Class SupportedChannels
- java.lang.Object
-
- com.facebook.openwifi.cloudsdk.ies.SupportedChannels
-
public class SupportedChannels extends Object
This information element (IE) appears in wifiscan entries. It's called "Supported Channels" in 802.11 specs (section 9.4.2.17). Refer to the specification for more details. Language in javadocs is taken from the specification.
-
-
Field Summary
Fields Modifier and Type Field Description shortfirstChannelNumberUnsigned 8 bits - first channel in a subband of supported channelsshortnumberOfChannelsUnsigned 8 bits - number of channels in a subband of supported channelsstatic intTYPEDefined in 802.11 table 9-92
-
Constructor Summary
Constructors Constructor Description SupportedChannels(short firstChannelNumber, short numberOfChannels)Constructor
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object obj)inthashCode()static SupportedChannelsparse(com.google.gson.JsonObject contents)Parse SupportedChannels from JSON object
-
-
-
Field Detail
-
TYPE
public static final int TYPE
Defined in 802.11 table 9-92- See Also:
- Constant Field Values
-
firstChannelNumber
public final short firstChannelNumber
Unsigned 8 bits - first channel in a subband of supported channels
-
numberOfChannels
public final short numberOfChannels
Unsigned 8 bits - number of channels in a subband of supported channels
-
-