public static enum CurrentPlaceRequestParams.ConfidenceLevel extends java.lang.Enum<CurrentPlaceRequestParams.ConfidenceLevel>
A place with field CONFIDENCE_LEVEL set to HIGH indicates that there is a
high likelihood that the user is currently located at that place.
| Modifier and Type | Method and Description |
|---|---|
static CurrentPlaceRequestParams.ConfidenceLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CurrentPlaceRequestParams.ConfidenceLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CurrentPlaceRequestParams.ConfidenceLevel LOW
public static final CurrentPlaceRequestParams.ConfidenceLevel MEDIUM
public static final CurrentPlaceRequestParams.ConfidenceLevel HIGH
public static CurrentPlaceRequestParams.ConfidenceLevel[] values()
for (CurrentPlaceRequestParams.ConfidenceLevel c : CurrentPlaceRequestParams.ConfidenceLevel.values()) System.out.println(c);
public static CurrentPlaceRequestParams.ConfidenceLevel 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