Package com.google.maps.model
Class WifiAccessPoint
- java.lang.Object
-
- com.google.maps.model.WifiAccessPoint
-
- All Implemented Interfaces:
java.io.Serializable
public class WifiAccessPoint extends java.lang.Object implements java.io.SerializableA WiFi access point.The request body's
wifiAccessPointsarray must contain two or more WiFi access point objects.macAddressis required; all other fields are optional.Please see WiFi Access Point Objects for more detail.
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classWifiAccessPoint.WifiAccessPointBuilder
-
Field Summary
Fields Modifier and Type Field Description java.lang.IntegerageThe number of milliseconds since this access point was detected.java.lang.IntegerchannelThe channel over which the client is communicating with the access point.java.lang.StringmacAddressThe MAC address of the WiFi node (required).java.lang.IntegersignalStrengthThe current signal strength measured in dBm.java.lang.IntegersignalToNoiseRatioThe current signal to noise ratio measured in dB.
-
Constructor Summary
Constructors Constructor Description WifiAccessPoint()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringtoString()
-
-
-
Field Detail
-
macAddress
public java.lang.String macAddress
The MAC address of the WiFi node (required). Separators must be:(colon) and hex digits must use uppercase.
-
signalStrength
public java.lang.Integer signalStrength
The current signal strength measured in dBm.
-
age
public java.lang.Integer age
The number of milliseconds since this access point was detected.
-
channel
public java.lang.Integer channel
The channel over which the client is communicating with the access point.
-
signalToNoiseRatio
public java.lang.Integer signalToNoiseRatio
The current signal to noise ratio measured in dB.
-
-