public enum Region extends Enum<Region>
| Enum Constant and Description |
|---|
Asia_Pacific_Singapore |
Asia_Pacific_Sydney |
Asia_Pacific_Tokyo |
EU_Frankfurt |
EU_Ireland |
South_America_Sao_Paulo |
US_East_Northern_Virginia |
US_WEST_Northern_California |
US_WEST_Oregon |
| Modifier and Type | Field and Description |
|---|---|
String |
endPoint |
String |
readableName |
| Modifier and Type | Method and Description |
|---|---|
static Region |
getDefault() |
static Region |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Region[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Region US_East_Northern_Virginia
public static final Region US_WEST_Oregon
public static final Region US_WEST_Northern_California
public static final Region EU_Ireland
public static final Region EU_Frankfurt
public static final Region Asia_Pacific_Singapore
public static final Region Asia_Pacific_Sydney
public static final Region Asia_Pacific_Tokyo
public static final Region South_America_Sao_Paulo
public static Region[] values()
for (Region c : Region.values()) System.out.println(c);
public static Region valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static Region getDefault()
Copyright © 2004-2016. All Rights Reserved.