Package com.adobe.aio.cloudmanager
Enum Region
- java.lang.Object
-
- java.lang.Enum<Region>
-
- com.adobe.aio.cloudmanager.Region
-
- All Implemented Interfaces:
Serializable
,Comparable<Region>
public enum Region extends Enum<Region>
Represents possible regions for deployments, network, and other configurations.See the documentation.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CANADA
EAST_US
GERMANY
JAPAN
SINGAPORE
SOUTH_UK
SOUTHEAST_AUSTRALIA
WEST_EUROPE
WEST_US
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Region
fromValue(String text)
String
toString()
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.
-
-
-
Enum Constant Detail
-
SOUTHEAST_AUSTRALIA
public static final Region SOUTHEAST_AUSTRALIA
-
CANADA
public static final Region CANADA
-
GERMANY
public static final Region GERMANY
-
SOUTH_UK
public static final Region SOUTH_UK
-
JAPAN
public static final Region JAPAN
-
WEST_EUROPE
public static final Region WEST_EUROPE
-
SINGAPORE
public static final Region SINGAPORE
-
EAST_US
public static final Region EAST_US
-
WEST_US
public static final Region WEST_US
-
-
Method Detail
-
values
public static Region[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Region c : Region.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Region valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-