public static enum CurrentPlaceRequestParams.ScanMode extends java.lang.Enum<CurrentPlaceRequestParams.ScanMode>
| Enum Constant and Description |
|---|
HIGH_ACCURACY
In high accuracy mode,
PlaceManager, scans for
nearby Wi-Fi and Bluetooth Low Energy beacons to maximize the accuracy of the current
place request. |
LOW_LATENCY
In low latency mode,
PlaceManager, reduces
nearby Wi-Fi and Bluetooth beacon scanning to a minimum to prioritize
low latency rather than accuracy. |
| Modifier and Type | Method and Description |
|---|---|
static CurrentPlaceRequestParams.ScanMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CurrentPlaceRequestParams.ScanMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CurrentPlaceRequestParams.ScanMode HIGH_ACCURACY
PlaceManager, scans for
nearby Wi-Fi and Bluetooth Low Energy beacons to maximize the accuracy of the current
place request. High accuracy mode is the default value.public static final CurrentPlaceRequestParams.ScanMode LOW_LATENCY
PlaceManager, reduces
nearby Wi-Fi and Bluetooth beacon scanning to a minimum to prioritize
low latency rather than accuracy. Using low latency mode reduces the maximum time
taken to generate the current place request. To minimize latency mode, a
location must be specified on the CurrentPlaceRequestParams.Builder.public static CurrentPlaceRequestParams.ScanMode[] values()
for (CurrentPlaceRequestParams.ScanMode c : CurrentPlaceRequestParams.ScanMode.values()) System.out.println(c);
public static CurrentPlaceRequestParams.ScanMode valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null