- java.lang.Object
-
- java.lang.Enum<Dot11LinkAdaptationControl.AselCommand>
-
- org.pcap4j.packet.Dot11LinkAdaptationControl.AselCommand
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Dot11LinkAdaptationControl.AselCommand>
- Enclosing class:
- Dot11LinkAdaptationControl
public static enum Dot11LinkAdaptationControl.AselCommand extends java.lang.Enum<Dot11LinkAdaptationControl.AselCommand>
- Since:
- pcap4j 1.7.0
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NO_FEEDBACKNo Feedback Due to ASEL Training Failure or Stale Feedback: 5RXASSIReceive Antenna Selection Sounding Indication (RXASSI): 2RXASSRReceive Antenna Selection Sounding Request (RXASSR): 3SEVENReserved: 7SOUNDING_LABELSounding Label: 4TXASSITransmit Antenna Selection Sounding Indication (TXASSI): 0TXASSI_CSITransmit Antenna Selection Sounding Indication requesting feedback of explicit CSI (TXASSI-CSI): 6TXASSRTransmit Antenna Selection Sounding Request (TXASSR) or Transmit ASEL Sounding Resumption: 1
-
Constructor Summary
Constructors Modifier Constructor Description privateAselCommand(int value, java.lang.String name)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Dot11LinkAdaptationControl.AselCommandgetInstance(int value)java.lang.StringgetName()intgetValue()java.lang.StringtoString()static Dot11LinkAdaptationControl.AselCommandvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Dot11LinkAdaptationControl.AselCommand[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TXASSI
public static final Dot11LinkAdaptationControl.AselCommand TXASSI
Transmit Antenna Selection Sounding Indication (TXASSI): 0
-
TXASSR
public static final Dot11LinkAdaptationControl.AselCommand TXASSR
Transmit Antenna Selection Sounding Request (TXASSR) or Transmit ASEL Sounding Resumption: 1
-
RXASSI
public static final Dot11LinkAdaptationControl.AselCommand RXASSI
Receive Antenna Selection Sounding Indication (RXASSI): 2
-
RXASSR
public static final Dot11LinkAdaptationControl.AselCommand RXASSR
Receive Antenna Selection Sounding Request (RXASSR): 3
-
SOUNDING_LABEL
public static final Dot11LinkAdaptationControl.AselCommand SOUNDING_LABEL
Sounding Label: 4
-
NO_FEEDBACK
public static final Dot11LinkAdaptationControl.AselCommand NO_FEEDBACK
No Feedback Due to ASEL Training Failure or Stale Feedback: 5
-
TXASSI_CSI
public static final Dot11LinkAdaptationControl.AselCommand TXASSI_CSI
Transmit Antenna Selection Sounding Indication requesting feedback of explicit CSI (TXASSI-CSI): 6
-
SEVEN
public static final Dot11LinkAdaptationControl.AselCommand SEVEN
Reserved: 7
-
-
Method Detail
-
values
public static Dot11LinkAdaptationControl.AselCommand[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Dot11LinkAdaptationControl.AselCommand c : Dot11LinkAdaptationControl.AselCommand.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Dot11LinkAdaptationControl.AselCommand 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:
toStringin classjava.lang.Enum<Dot11LinkAdaptationControl.AselCommand>
-
getInstance
public static Dot11LinkAdaptationControl.AselCommand getInstance(int value)
- Parameters:
value- value- Returns:
- the AselCommand object the value of which is the given value.
-
-