パッケージ org.pcap4j.packet
クラス Dot11InformationElement
- java.lang.Object
-
- org.pcap4j.packet.Dot11InformationElement
-
- すべての実装されたインタフェース:
Serializable
- 直系の既知のサブクラス:
Dot112040BssCoexistenceElement
,Dot11AbstractSupportedRatesElement
,Dot11ChannelUsageElement
,Dot11DsssParameterSetElement
,Dot11ExtendedCapabilitiesElement
,Dot11HTCapabilitiesElement
,Dot11InterworkingElement
,Dot11MeshIdElement
,Dot11RequestElement
,Dot11SsidElement
,Dot11SsidListElement
,Dot11SupportedOperatingClassesElement
,Dot11VendorSpecificElement
public abstract class Dot11InformationElement extends Object implements Serializable
IEEE802.11 Information element1 1 variable +----------+----------+------------- |Element ID| Length | information +----------+----------+-------------
- 導入されたバージョン:
- pcap4j 1.7.0
- 作成者:
- Kaito Yamada
- 関連項目:
- IEEE802.11, 直列化された形式
-
-
ネストされたクラスの概要
ネストされたクラス 修飾子とタイプ クラス 説明 static class
Dot11InformationElement.Builder
-
コンストラクタの概要
コンストラクタ 修飾子 コンストラクタ 説明 protected
Dot11InformationElement(byte[] rawData, int offset, int length, Dot11InformationElementId id)
protected
Dot11InformationElement(Dot11InformationElement.Builder builder)
-
メソッドの概要
すべてのメソッド インスタンス・メソッド abstractメソッド concreteメソッド 修飾子とタイプ メソッド 説明 boolean
equals(Object obj)
Dot11InformationElementId
getElementId()
byte
getLength()
int
getLengthAsInt()
abstract byte[]
getRawData()
int
hashCode()
abstract int
length()
-
-
-
コンストラクタの詳細
-
Dot11InformationElement
protected Dot11InformationElement(byte[] rawData, int offset, int length, Dot11InformationElementId id) throws IllegalRawDataException
- パラメータ:
rawData
- rawDataoffset
- offsetlength
- lengthid
- element ID- 例外:
IllegalRawDataException
- if parsing the raw data fails.
-
Dot11InformationElement
protected Dot11InformationElement(Dot11InformationElement.Builder builder)
- パラメータ:
builder
- builder
-
-
メソッドの詳細
-
getElementId
public Dot11InformationElementId getElementId()
- 戻り値:
- the element ID
-
getLength
public byte getLength()
- 戻り値:
- the value of the length field.
-
getLengthAsInt
public int getLengthAsInt()
- 戻り値:
- the value of the length field.
-
length
public abstract int length()
- 戻り値:
- the length
-
getRawData
public abstract byte[] getRawData()
- 戻り値:
- the raw data.
-
-