パッケージ org.pcap4j.packet
クラス Dot11LinkAdaptationControl
- java.lang.Object
-
- org.pcap4j.packet.Dot11LinkAdaptationControl
-
- すべての実装されたインタフェース:
Serializable
public final class Dot11LinkAdaptationControl extends Object implements Serializable
Link Adaptation Control field of an IEEE802.11 frame.0 1 2 3 4 5 6 7 +--------+--------+--------+--------+--------+--------+--------+--------+ |VHT_MFB | TRQ | MAI | MFSI | +--------+--------+--------+--------+--------+--------+--------+--------+ | MFSI | MFB/ASELC | +--------+--------+--------+--------+--------+--------+--------+--------+
- 導入されたバージョン:
- pcap4j 1.7.0
- 作成者:
- Kaito Yamada
- 関連項目:
- IEEE802.11, 直列化された形式
-
-
ネストされたクラスの概要
ネストされたクラス 修飾子とタイプ クラス 説明 static class
Dot11LinkAdaptationControl.Aselc
ASELC subfieldstatic class
Dot11LinkAdaptationControl.AselCommand
static class
Dot11LinkAdaptationControl.Builder
static class
Dot11LinkAdaptationControl.Mai
MAI subfield
-
フィールドの概要
フィールド 修飾子とタイプ フィールド 説明 static byte
ASELI
ASELI
-
メソッドの概要
すべてのメソッド staticメソッド インスタンス・メソッド concreteメソッド 修飾子とタイプ メソッド 説明 boolean
equals(Object obj)
Dot11LinkAdaptationControl.Aselc
getAselc()
Dot11LinkAdaptationControl.Builder
getBuilder()
Dot11LinkAdaptationControl.Mai
getMai()
Byte
getMfb()
Integer
getMfbAsInteger()
byte
getMfsi()
int
getMfsiAsInt()
byte[]
getRawData()
int
hashCode()
boolean
isAselIndicated()
boolean
isTrq()
boolean
isVhtMfb()
int
length()
static Dot11LinkAdaptationControl
newInstance(byte[] rawData, int offset, int length)
A static factory method.String
toString()
-
-
-
フィールドの詳細
-
ASELI
public static final byte ASELI
ASELI- 関連項目:
- 定数フィールド値
-
-
メソッドの詳細
-
newInstance
public static Dot11LinkAdaptationControl 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 Dot11LinkAdaptationControl object.
- 例外:
IllegalRawDataException
- if parsing the raw data fails.
-
isVhtMfb
public boolean isVhtMfb()
- 戻り値:
- true if the VHT_MFB field is set to 1; false otherwise.
-
isTrq
public boolean isTrq()
- 戻り値:
- true if the TRQ field is set to 1; false otherwise.
-
isAselIndicated
public boolean isAselIndicated()
- 戻り値:
- true if the MAI field is set to 14 (ASELI); false otherwise.
- 関連項目:
ASELI
-
getMai
public Dot11LinkAdaptationControl.Mai getMai()
- 戻り値:
- a
Dot11LinkAdaptationControl.Mai
object ifisAselIndicated
returns false; otherwise null.
-
getMfsi
public byte getMfsi()
- 戻り値:
- mfsi
-
getMfsiAsInt
public int getMfsiAsInt()
- 戻り値:
- mfsi
-
getMfb
public Byte getMfb()
- 戻り値:
- the value of MFB if
isAselIndicated
returns false; otherwise null.
-
getMfbAsInteger
public Integer getMfbAsInteger()
- 戻り値:
- the value of MFB if
isAselIndicated
returns false; otherwise null.
-
getAselc
public Dot11LinkAdaptationControl.Aselc getAselc()
- 戻り値:
- an
Dot11LinkAdaptationControl.Aselc
object ifisAselIndicated
returns true; otherwise null.
-
getBuilder
public Dot11LinkAdaptationControl.Builder getBuilder()
- 戻り値:
- a new Builder object populated with this object's fields.
-
getRawData
public byte[] getRawData()
- 戻り値:
- the raw data.
-
length
public int length()
- 戻り値:
- length
-
-