パッケージ org.pcap4j.packet
クラス Dot11InterworkingElement
- java.lang.Object
-
- org.pcap4j.packet.Dot11InformationElement
-
- org.pcap4j.packet.Dot11InterworkingElement
-
- すべての実装されたインタフェース:
Serializable
public final class Dot11InterworkingElement extends Dot11InformationElement
IEEE802.11 Interworking element1 1 1 0 or 2 0 or 6 +--------------+--------------+--------------+--------------+--------------+ | Element ID | Length |Access Network| Venue Info | HESSID | | | |Options | (optional) | (optional) | +--------------+--------------+--------------+--------------+--------------+ Element ID: 107 Access Network Options field: B0 B1 B2 B3 B4 B5 B6 B7 +--------+--------+--------+--------+--------+--------+--------+--------+ | Access Network Type |Internet| ASRA | ESR | UESA | +--------+--------+--------+--------+--------+--------+--------+--------+
The Interworking element contains information about the interworking service capabilities of a STA.- 導入されたバージョン:
- pcap4j 1.7.0
- 作成者:
- Kaito Yamada
- 関連項目:
- IEEE802.11, 直列化された形式
-
-
ネストされたクラスの概要
ネストされたクラス 修飾子とタイプ クラス 説明 static class
Dot11InterworkingElement.Builder
-
メソッドの概要
すべてのメソッド staticメソッド インスタンス・メソッド concreteメソッド 修飾子とタイプ メソッド 説明 boolean
equals(Object obj)
Dot11AccessNetworkType
getAccessnetworkType()
Dot11InterworkingElement.Builder
getBuilder()
byte[]
getHessid()
byte[]
getRawData()
Dot11VenueInfo
getVenueInfo()
int
hashCode()
boolean
isAsra()
boolean
isEsr()
boolean
isInternetAccessible()
boolean
isUesa()
int
length()
static Dot11InterworkingElement
newInstance(byte[] rawData, int offset, int length)
A static factory method.String
toString()
String
toString(String indent)
-
クラスから継承されたメソッド org.pcap4j.packet.Dot11InformationElement
getElementId, getLength, getLengthAsInt
-
-
-
-
メソッドの詳細
-
newInstance
public static Dot11InterworkingElement newInstance(byte[] rawData, int offset, int length) throws IllegalRawDataException
A static factory method. This method validates the arguments byByteArrays.validateBounds(byte[], int, int)
, which may throw exceptions undocumented here.- パラメータ:
rawData
- rawDataoffset
- offsetlength
- length- 戻り値:
- a new Dot11InterworkingElement object.
- 例外:
IllegalRawDataException
- if parsing the raw data fails.
-
getAccessnetworkType
public Dot11AccessNetworkType getAccessnetworkType()
- 戻り値:
- accessnetworkType
-
isInternetAccessible
public boolean isInternetAccessible()
- 戻り値:
- true if the internet field is set to 1; false otherwise.
-
isAsra
public boolean isAsra()
- 戻り値:
- true if the ASRA field is set to 1; false otherwise.
-
isEsr
public boolean isEsr()
- 戻り値:
- true if the ESR field is set to 1; false otherwise.
-
isUesa
public boolean isUesa()
- 戻り値:
- true if the UESA field is set to 1; false otherwise.
-
getVenueInfo
public Dot11VenueInfo getVenueInfo()
- 戻り値:
- venueInfo. May be null.
-
getHessid
public byte[] getHessid()
- 戻り値:
- hessid. May be null.
-
length
public int length()
- 定義:
length
クラス内Dot11InformationElement
- 戻り値:
- the length
-
getRawData
public byte[] getRawData()
- 定義:
getRawData
クラス内Dot11InformationElement
- 戻り値:
- the raw data.
-
getBuilder
public Dot11InterworkingElement.Builder getBuilder()
- 戻り値:
- a new Builder object populated with this object's fields.
-
hashCode
public int hashCode()
- オーバーライド:
hashCode
クラス内Dot11InformationElement
-
equals
public boolean equals(Object obj)
- オーバーライド:
equals
クラス内Dot11InformationElement
-
-