Enum Region
- java.lang.Object
-
- java.lang.Enum<Region>
-
- org.jclouds.azurecompute.arm.domain.Region
-
- All Implemented Interfaces:
Serializable
,Comparable<Region>
public enum Region extends Enum<Region>
Regions used in Azure.- See Also:
- this page
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Region
byName(String name)
String
getName()
String
iso3166Code()
static Set<String>
iso3166Codes()
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
-
CENTRAL_US
public static final Region CENTRAL_US
-
EAST_US
public static final Region EAST_US
-
EAST_US_2
public static final Region EAST_US_2
-
US_GOV_IOWA
public static final Region US_GOV_IOWA
-
US_GOV_VIRGINIA
public static final Region US_GOV_VIRGINIA
-
NORTH_CENTRAL_US
public static final Region NORTH_CENTRAL_US
-
SOUTH_CENTRAL_US
public static final Region SOUTH_CENTRAL_US
-
WEST_CENTRAL_US
public static final Region WEST_CENTRAL_US
-
WEST_US
public static final Region WEST_US
-
WEST_US_2
public static final Region WEST_US_2
-
NORTH_EUROPE
public static final Region NORTH_EUROPE
-
UK_SOUTH
public static final Region UK_SOUTH
-
UK_WEST
public static final Region UK_WEST
-
WEST_EUROPE
public static final Region WEST_EUROPE
-
EAST_ASIA
public static final Region EAST_ASIA
-
SOUTH_EAST_ASIA
public static final Region SOUTH_EAST_ASIA
-
KOREA_CENTRAL
public static final Region KOREA_CENTRAL
-
KOREA_SOUTH
public static final Region KOREA_SOUTH
-
JAPAN_EAST
public static final Region JAPAN_EAST
-
JAPAN_WEST
public static final Region JAPAN_WEST
-
BRAZIL_SOUTH
public static final Region BRAZIL_SOUTH
-
AUSTRALIA_EAST
public static final Region AUSTRALIA_EAST
-
AUSTRALIA_SOUTH_EAST
public static final Region AUSTRALIA_SOUTH_EAST
-
AUSTRALIA_CENTRAL
public static final Region AUSTRALIA_CENTRAL
-
AUSTRALIA_CENTRAL_2
public static final Region AUSTRALIA_CENTRAL_2
-
CENTRAL_INDIA
public static final Region CENTRAL_INDIA
-
SOUTH_INDIA
public static final Region SOUTH_INDIA
-
WEST_INDIA
public static final Region WEST_INDIA
-
CHINA_EAST
public static final Region CHINA_EAST
-
CHINA_EAST_2
public static final Region CHINA_EAST_2
-
CHINA_NORTH
public static final Region CHINA_NORTH
-
CHINA_NORTH_2
public static final Region CHINA_NORTH_2
-
CANADA_CENTRAL
public static final Region CANADA_CENTRAL
-
CANADA_EAST
public static final Region CANADA_EAST
-
FRANCE_CENTRAL
public static final Region FRANCE_CENTRAL
-
FRANCE_SOUTH
public static final Region FRANCE_SOUTH
-
SOUTH_AFRICA_NORTH
public static final Region SOUTH_AFRICA_NORTH
-
SOUTH_AFRICA_WEST
public static final Region SOUTH_AFRICA_WEST
-
UAE_NORTH
public static final Region UAE_NORTH
-
-
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
-
getName
public String getName()
-
iso3166Code
public String iso3166Code()
-
-