Module org.pcap4j.core
Package org.pcap4j.packet
Enum Dot11HTCapabilitiesElement.ChannelEstimationCapability
- java.lang.Object
-
- java.lang.Enum<Dot11HTCapabilitiesElement.ChannelEstimationCapability>
-
- org.pcap4j.packet.Dot11HTCapabilitiesElement.ChannelEstimationCapability
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Dot11HTCapabilitiesElement.ChannelEstimationCapability>
- Enclosing class:
- Dot11HTCapabilitiesElement
public static enum Dot11HTCapabilitiesElement.ChannelEstimationCapability extends java.lang.Enum<Dot11HTCapabilitiesElement.ChannelEstimationCapability>
Channel Estimation Capability field of IEEE802.11 HT Capabilities element.- Since:
- pcap4j 1.7.0
- See Also:
- IEEE802.11
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FOUR_SPACE_TIME_STREAMS4 space-time streams: 3ONE_SPACE_TIME_STREAM1 space-time stream: 0THREE_SPACE_TIME_STREAMS3 space-time streams: 2TWO_SPACE_TIME_STREAMS2 space-time streams: 1
-
Constructor Summary
Constructors Modifier Constructor Description privateChannelEstimationCapability(int value, java.lang.String name)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Dot11HTCapabilitiesElement.ChannelEstimationCapabilitygetInstance(int value)java.lang.StringgetName()intgetValue()java.lang.StringtoString()static Dot11HTCapabilitiesElement.ChannelEstimationCapabilityvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Dot11HTCapabilitiesElement.ChannelEstimationCapability[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ONE_SPACE_TIME_STREAM
public static final Dot11HTCapabilitiesElement.ChannelEstimationCapability ONE_SPACE_TIME_STREAM
1 space-time stream: 0
-
TWO_SPACE_TIME_STREAMS
public static final Dot11HTCapabilitiesElement.ChannelEstimationCapability TWO_SPACE_TIME_STREAMS
2 space-time streams: 1
-
THREE_SPACE_TIME_STREAMS
public static final Dot11HTCapabilitiesElement.ChannelEstimationCapability THREE_SPACE_TIME_STREAMS
3 space-time streams: 2
-
FOUR_SPACE_TIME_STREAMS
public static final Dot11HTCapabilitiesElement.ChannelEstimationCapability FOUR_SPACE_TIME_STREAMS
4 space-time streams: 3
-
-
Method Detail
-
values
public static Dot11HTCapabilitiesElement.ChannelEstimationCapability[] 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.ChannelEstimationCapability c : Dot11HTCapabilitiesElement.ChannelEstimationCapability.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.ChannelEstimationCapability 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.ChannelEstimationCapability>
-
getInstance
public static Dot11HTCapabilitiesElement.ChannelEstimationCapability getInstance(int value)
- Parameters:
value- value- Returns:
- the ChannelEstimationCapability object the value of which is the given value.
-
-