Package org.pcap4j.packet
Enum Dot11HTCapabilitiesElement.NumBeamformerAntennas
- java.lang.Object
-
- java.lang.Enum<Dot11HTCapabilitiesElement.NumBeamformerAntennas>
-
- org.pcap4j.packet.Dot11HTCapabilitiesElement.NumBeamformerAntennas
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Dot11HTCapabilitiesElement.NumBeamformerAntennas>
,java.lang.constant.Constable
- Enclosing class:
- Dot11HTCapabilitiesElement
public static enum Dot11HTCapabilitiesElement.NumBeamformerAntennas extends java.lang.Enum<Dot11HTCapabilitiesElement.NumBeamformerAntennas>
CSI Number of Beamformer Antennas Supported field, Noncompressed Steering Number of Beamformer Antennas Supported field, and Compressed Steering Number of Beamformer Antennas Supported field of IEEE802.11 HT Capabilities element.- Since:
- pcap4j 1.7.0
- Author:
- Kaito Yamada
- See Also:
- IEEE802.11
-
-
Method Summary
Modifier and Type Method Description static Dot11HTCapabilitiesElement.NumBeamformerAntennas
getInstance(int value)
java.lang.String
getName()
int
getValue()
java.lang.String
toString()
static Dot11HTCapabilitiesElement.NumBeamformerAntennas
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Dot11HTCapabilitiesElement.NumBeamformerAntennas[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SINGLE
public static final Dot11HTCapabilitiesElement.NumBeamformerAntennas SINGLE
Single Tx antenna sounding: 0
-
TWO
public static final Dot11HTCapabilitiesElement.NumBeamformerAntennas TWO
2 Tx antenna sounding: 1
-
THREE
public static final Dot11HTCapabilitiesElement.NumBeamformerAntennas THREE
3 Tx antenna sounding: 2
-
FOUR
public static final Dot11HTCapabilitiesElement.NumBeamformerAntennas FOUR
4 Tx antenna sounding: 3
-
-
Method Detail
-
values
public static Dot11HTCapabilitiesElement.NumBeamformerAntennas[] values()
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Dot11HTCapabilitiesElement.NumBeamformerAntennas valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getValue
public int getValue()
- Returns:
- value
-
getName
public java.lang.String getName()
- Returns:
- name
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<Dot11HTCapabilitiesElement.NumBeamformerAntennas>
-
getInstance
public static Dot11HTCapabilitiesElement.NumBeamformerAntennas getInstance(int value)
- Parameters:
value
- value- Returns:
- the NumBeamformerAntennas object the value of which is the given value.
-
-