public enum ApiKeyType extends java.lang.Enum<ApiKeyType>
| Enum Constant and Description |
|---|
GEOFENCING_API_KEY
API key for Geofencing service
|
MAPS_API_KEY
API key for Maps service
|
ROUTING_API_KEY
API key for Routing service
|
SEARCH_API_KEY
API key for Search service
|
TRAFFIC_API_KEY
API key for Traffic service
|
| Modifier and Type | Method and Description |
|---|---|
static ApiKeyType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ApiKeyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApiKeyType MAPS_API_KEY
public static final ApiKeyType ROUTING_API_KEY
public static final ApiKeyType SEARCH_API_KEY
public static final ApiKeyType TRAFFIC_API_KEY
public static final ApiKeyType GEOFENCING_API_KEY
public static ApiKeyType[] values()
for (ApiKeyType c : ApiKeyType.values()) System.out.println(c);
public static ApiKeyType 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