public static enum CloudDatastoreRemoteServiceConfig.AppId.Location extends java.lang.Enum<CloudDatastoreRemoteServiceConfig.AppId.Location>
| Enum Constant and Description |
|---|
ASIA_NORTHEAST1 |
AUSTRALIA_SOUTHEAST1 |
EUROPE_WEST |
EUROPE_WEST1 |
EUROPE_WEST3 |
US_CENTRAL |
US_EAST1 |
US_EAST4 |
| Modifier and Type | Method and Description |
|---|---|
static CloudDatastoreRemoteServiceConfig.AppId.Location |
fromString(java.lang.String locationString)
Returns the
CloudDatastoreRemoteServiceConfig.AppId.Location for a location string. |
static CloudDatastoreRemoteServiceConfig.AppId.Location |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CloudDatastoreRemoteServiceConfig.AppId.Location[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CloudDatastoreRemoteServiceConfig.AppId.Location US_CENTRAL
public static final CloudDatastoreRemoteServiceConfig.AppId.Location EUROPE_WEST
public static final CloudDatastoreRemoteServiceConfig.AppId.Location US_EAST1
public static final CloudDatastoreRemoteServiceConfig.AppId.Location ASIA_NORTHEAST1
public static final CloudDatastoreRemoteServiceConfig.AppId.Location US_EAST4
public static final CloudDatastoreRemoteServiceConfig.AppId.Location AUSTRALIA_SOUTHEAST1
public static final CloudDatastoreRemoteServiceConfig.AppId.Location EUROPE_WEST1
public static final CloudDatastoreRemoteServiceConfig.AppId.Location EUROPE_WEST3
public static CloudDatastoreRemoteServiceConfig.AppId.Location[] values()
for (CloudDatastoreRemoteServiceConfig.AppId.Location c : CloudDatastoreRemoteServiceConfig.AppId.Location.values()) System.out.println(c);
public static CloudDatastoreRemoteServiceConfig.AppId.Location 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 nullpublic static CloudDatastoreRemoteServiceConfig.AppId.Location fromString(java.lang.String locationString)
CloudDatastoreRemoteServiceConfig.AppId.Location for a location string. The location string is case-insensitive
and may use hyphens to separate components. For example, given the location string us-central, this method returns US_CENTRAL.java.lang.IllegalArgumentException - if locationString does not correspond to a known
CloudDatastoreRemoteServiceConfig.AppId.Locationjava.lang.NullPointerException - if locationString is null