Class Country.CountryInfo
- java.lang.Object
-
- com.facebook.openwifi.cloudsdk.ies.Country.CountryInfo
-
-
Field Summary
Fields Modifier and Type Field Description short
firstChannelNumber
8 bits unsigned - the lowest channel number in the CountryInfo.short
maximumTransmitPowerLevel
8 bits unsigned - The maximum power, in dBm, allowed to be transmitted.short
numberOfChannels
8 bits unsigned - Number of channels this CountryInfo applies to.
-
Constructor Summary
Constructors Constructor Description CountryInfo(short firstChannelNumber, short maximumTransmitPowerLevel, short numberOfChannels)
Constructor.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
int
hashCode()
static Country.CountryInfo
parse(com.google.gson.JsonObject contents)
Parse CountryInfo from the appropriate Json object.
-
-
-
Field Detail
-
firstChannelNumber
public final short firstChannelNumber
8 bits unsigned - the lowest channel number in the CountryInfo.
-
maximumTransmitPowerLevel
public final short maximumTransmitPowerLevel
8 bits unsigned - The maximum power, in dBm, allowed to be transmitted.
-
numberOfChannels
public final short numberOfChannels
8 bits unsigned - Number of channels this CountryInfo applies to. E.g., if First Channel Number is 2 and Number of Channels is 4, this CountryInfo describes channels 2, 3, 4, and 5.
-
-