Package org.pcap4j.packet
Enum Dot11HtControl.CalibrationPosition
- java.lang.Object
-
- java.lang.Enum<Dot11HtControl.CalibrationPosition>
-
- org.pcap4j.packet.Dot11HtControl.CalibrationPosition
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Dot11HtControl.CalibrationPosition>
,java.lang.constant.Constable
- Enclosing class:
- Dot11HtControl
public static enum Dot11HtControl.CalibrationPosition extends java.lang.Enum<Dot11HtControl.CalibrationPosition>
Calibration Position subfield of HT Control field of an IEEE802.11 frame.- Since:
- pcap4j 1.7.0
- Author:
- Kaito Yamada
- See Also:
- IEEE802.11
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CALIBRATION_START
calibration start: 1NOT_CALIBRATION
not a calibration frame: 0SOUNDING_COMPLETE
sounding complete: 3SOUNDING_RESPONSE
sounding response: 2
-
Method Summary
Modifier and Type Method Description static Dot11HtControl.CalibrationPosition
getInstance(int value)
java.lang.String
getName()
int
getValue()
java.lang.String
toString()
static Dot11HtControl.CalibrationPosition
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Dot11HtControl.CalibrationPosition[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NOT_CALIBRATION
public static final Dot11HtControl.CalibrationPosition NOT_CALIBRATION
not a calibration frame: 0
-
CALIBRATION_START
public static final Dot11HtControl.CalibrationPosition CALIBRATION_START
calibration start: 1
-
SOUNDING_RESPONSE
public static final Dot11HtControl.CalibrationPosition SOUNDING_RESPONSE
sounding response: 2
-
SOUNDING_COMPLETE
public static final Dot11HtControl.CalibrationPosition SOUNDING_COMPLETE
sounding complete: 3
-
-
Method Detail
-
values
public static Dot11HtControl.CalibrationPosition[] 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 Dot11HtControl.CalibrationPosition 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<Dot11HtControl.CalibrationPosition>
-
getInstance
public static Dot11HtControl.CalibrationPosition getInstance(int value)
- Parameters:
value
- value- Returns:
- the CalibrationPosition object the value of which is the given value.
-
-