public enum RegionScope extends Enum<RegionScope>
| Enum Constant and Description |
|---|
ALL |
AP_NORTHEAST_1 |
AP_SOUTHEAST_1 |
AP_SOUTHEAST_2 |
DEFAULT |
EU_WEST_1 |
US_EAST_1 |
US_WEST_2 |
| Modifier and Type | Method and Description |
|---|---|
String |
getName() |
static RegionScope |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RegionScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RegionScope DEFAULT
public static final RegionScope US_EAST_1
public static final RegionScope US_WEST_2
public static final RegionScope EU_WEST_1
public static final RegionScope AP_NORTHEAST_1
public static final RegionScope AP_SOUTHEAST_1
public static final RegionScope AP_SOUTHEAST_2
public static final RegionScope ALL
public static RegionScope[] values()
for (RegionScope c : RegionScope.values()) System.out.println(c);
public static RegionScope 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 getName()
Copyright © 2020. All rights reserved.