Class ReducedNeighborReport
- java.lang.Object
-
- com.facebook.openwifi.cloudsdk.ies.ReducedNeighborReport
-
public class ReducedNeighborReport extends Object
This information element (IE) appears in wifiscan entries. It's called "Reduced Neighbor Report" in 802.11 specs (section 9.4.2.170). Refer to the specification for more details. Language in javadocs is taken from the specification.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ReducedNeighborReport.NeighborApInformation
The Neighbor AP Information field specifies TBTT and other information related to a group of neighbor APs on one channel.
-
Field Summary
Fields Modifier and Type Field Description List<ReducedNeighborReport.NeighborApInformation>
neighborApInformations
number of channels in a subband of supported channelsstatic int
TYPE
Defined in 802.11 table 9-92
-
Constructor Summary
Constructors Constructor Description ReducedNeighborReport(List<ReducedNeighborReport.NeighborApInformation> neighborApInformations)
Constructor
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
int
hashCode()
static ReducedNeighborReport
parse(com.google.gson.JsonObject contents)
Parse ReducedNeighborReport from JSON object
-
-
-
Field Detail
-
TYPE
public static final int TYPE
Defined in 802.11 table 9-92- See Also:
- Constant Field Values
-
neighborApInformations
public final List<ReducedNeighborReport.NeighborApInformation> neighborApInformations
number of channels in a subband of supported channels
-
-
Constructor Detail
-
ReducedNeighborReport
public ReducedNeighborReport(List<ReducedNeighborReport.NeighborApInformation> neighborApInformations)
Constructor
-
-