java.io.Serializable
, java.lang.Comparable<PlaceIdScope>
public enum PlaceIdScope extends java.lang.Enum<PlaceIdScope>
Enum Constant | Description |
---|---|
APP |
Indicates the place ID is recognised by your application only.
|
GOOGLE |
Indicates the place ID is available to other applications and on Google Maps.
|
Modifier and Type | Method | Description |
---|---|---|
static PlaceIdScope |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static PlaceIdScope[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PlaceIdScope APP
public static final PlaceIdScope GOOGLE
public static PlaceIdScope[] values()
for (PlaceIdScope c : PlaceIdScope.values()) System.out.println(c);
public static PlaceIdScope 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