Class PowerCapability
- java.lang.Object
-
- com.facebook.openwifi.cloudsdk.ies.PowerCapability
-
public class PowerCapability extends Object
This information element (IE) appears in wifiscan entries. It's called "Power Capability" in 802.11 specs (section 9.4.2.14). Refer to the specification for more details. Language in javadocs is taken from the specification.
-
-
Field Summary
Fields Modifier and Type Field Description byte
maximumTxPowerCapability
Signed 8 bits units of dB relative to 1mW - nominal maximum transmit power with which the STA is capable of transmitting in the current channel, with a tolerance ± 5 dB.byte
minimumTxPowerCapability
Signed 8 bits units of dB relative to 1mW - nominal minimum transmit power with which the STA is capable of transmitting in the current channel, with a tolerance ± 5 dB.static int
TYPE
Defined in 802.11 table 9-92
-
Constructor Summary
Constructors Constructor Description PowerCapability(byte minimumTxPowerCapability, byte maximumTxPowerCapability)
Constructor
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
int
hashCode()
static PowerCapability
parse(com.google.gson.JsonObject contents)
Parse PowerCapability from JSON object
-
-
-
Field Detail
-
TYPE
public static final int TYPE
Defined in 802.11 table 9-92- See Also:
- Constant Field Values
-
minimumTxPowerCapability
public final byte minimumTxPowerCapability
Signed 8 bits units of dB relative to 1mW - nominal minimum transmit power with which the STA is capable of transmitting in the current channel, with a tolerance ± 5 dB.
-
maximumTxPowerCapability
public final byte maximumTxPowerCapability
Signed 8 bits units of dB relative to 1mW - nominal maximum transmit power with which the STA is capable of transmitting in the current channel, with a tolerance ± 5 dB.
-
-