パッケージ org.pcap4j.packet
クラス Dot11VendorSpecificElement
- java.lang.Object
-
- org.pcap4j.packet.Dot11InformationElement
-
- org.pcap4j.packet.Dot11VendorSpecificElement
-
- すべての実装されたインタフェース:
Serializable
public final class Dot11VendorSpecificElement extends Dot11InformationElement
IEEE802.11 Vendor Specific element1 1 variable variable +------------+------------+------------+------------------------ | Element ID | Length |Organization|Vendor-specific content | | |Identifier | +------------+------------+------------+------------------------ Element ID: 221
The Vendor Specific element is used to carry information not defined in this standard within a single defined format, so that reserved element IDs are not usurped for nonstandard purposes and so that interoperability is more easily achieved in the presence of nonstandard information. The element requires that the first 3 or more octets of the Information field identify the entity that has defined the content of the particular Vendor Specific element.- 導入されたバージョン:
- pcap4j 1.7.0
- 作成者:
- Kaito Yamada
- 関連項目:
- IEEE802.11, 直列化された形式
-
-
ネストされたクラスの概要
ネストされたクラス 修飾子とタイプ クラス 説明 static class
Dot11VendorSpecificElement.Builder
-
メソッドの概要
すべてのメソッド staticメソッド インスタンス・メソッド concreteメソッド 修飾子とタイプ メソッド 説明 boolean
equals(Object obj)
Dot11VendorSpecificElement.Builder
getBuilder()
byte[]
getInformation()
byte[]
getRawData()
int
hashCode()
int
length()
static Dot11VendorSpecificElement
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 Dot11VendorSpecificElement 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 Dot11VendorSpecificElement object.
- 例外:
IllegalRawDataException
- if parsing the raw data fails.
-
getInformation
public byte[] getInformation()
- 戻り値:
- information
-
length
public int length()
- 定義:
length
クラス内Dot11InformationElement
- 戻り値:
- the length
-
getRawData
public byte[] getRawData()
- 定義:
getRawData
クラス内Dot11InformationElement
- 戻り値:
- the raw data.
-
getBuilder
public Dot11VendorSpecificElement.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
-
-