- java.lang.Object
-
- java.lang.Enum<Dot11HTCapabilitiesElement.StbcSupport>
-
- org.pcap4j.packet.Dot11HTCapabilitiesElement.StbcSupport
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Dot11HTCapabilitiesElement.StbcSupport>
- Enclosing class:
- Dot11HTCapabilitiesElement
public static enum Dot11HTCapabilitiesElement.StbcSupport extends java.lang.Enum<Dot11HTCapabilitiesElement.StbcSupport>
Rx STBC field of IEEE802.11 HT Capabilities element.- Since:
- pcap4j 1.7.0
- See Also:
- IEEE802.11
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NO_SUPPORTNo support: 0ONE_AND_TWO_SPATIAL_STREAMSOne and two spatial streams are supported: 2ONE_SPATIAL_STREAMOne spatial stream is supported: 1ONE_TWO_AND_THREE_SPATIAL_STREAMSOne, two and three spatial streams are supported: 3
-
Constructor Summary
Constructors Modifier Constructor Description privateStbcSupport(int value, java.lang.String name)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Dot11HTCapabilitiesElement.StbcSupportgetInstance(int value)java.lang.StringgetName()intgetValue()java.lang.StringtoString()static Dot11HTCapabilitiesElement.StbcSupportvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Dot11HTCapabilitiesElement.StbcSupport[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NO_SUPPORT
public static final Dot11HTCapabilitiesElement.StbcSupport NO_SUPPORT
No support: 0
-
ONE_SPATIAL_STREAM
public static final Dot11HTCapabilitiesElement.StbcSupport ONE_SPATIAL_STREAM
One spatial stream is supported: 1
-
ONE_AND_TWO_SPATIAL_STREAMS
public static final Dot11HTCapabilitiesElement.StbcSupport ONE_AND_TWO_SPATIAL_STREAMS
One and two spatial streams are supported: 2
-
ONE_TWO_AND_THREE_SPATIAL_STREAMS
public static final Dot11HTCapabilitiesElement.StbcSupport ONE_TWO_AND_THREE_SPATIAL_STREAMS
One, two and three spatial streams are supported: 3
-
-
Method Detail
-
values
public static Dot11HTCapabilitiesElement.StbcSupport[] 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 (Dot11HTCapabilitiesElement.StbcSupport c : Dot11HTCapabilitiesElement.StbcSupport.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Dot11HTCapabilitiesElement.StbcSupport 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<Dot11HTCapabilitiesElement.StbcSupport>
-
getInstance
public static Dot11HTCapabilitiesElement.StbcSupport getInstance(int value)
- Parameters:
value- value- Returns:
- the StbcSupport object the value of which is the given value.
-
-