public enum Region extends Enum<Region>
| Enum Constant and Description |
|---|
useast1 |
usgoveast1 |
usgovwest1 |
uswest2 |
| Modifier and Type | Method and Description |
|---|---|
String |
getRegion() |
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 uswest2
public static final Region useast1
public static final Region usgovwest1
public static final Region usgoveast1
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 String getRegion()