Enum UniversalRegion
- java.lang.Object
-
- java.lang.Enum<UniversalRegion>
-
- com.rivet.api.resources.cloud.common.types.UniversalRegion
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<UniversalRegion>
public enum UniversalRegion extends java.lang.Enum<UniversalRegion>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AMSTERDAMATLANTABANGALORECHENNAICHICAGODALLASFRANKFURTJAKARTALOCALLONDONLOS_ANGELESMIAMIMILANMUMBAINEW_YORK_CITYNEWARKOSAKAPARISSAN_FRANCISCOSAO_PAULOSEATTLESINGAPORESTOCKHOLMSYDNEYTOKYOTORONTOUNKNOWNWASHINGTON_DC
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringtoString()static UniversalRegionvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static UniversalRegion[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNKNOWN
public static final UniversalRegion UNKNOWN
-
LOCAL
public static final UniversalRegion LOCAL
-
AMSTERDAM
public static final UniversalRegion AMSTERDAM
-
ATLANTA
public static final UniversalRegion ATLANTA
-
BANGALORE
public static final UniversalRegion BANGALORE
-
DALLAS
public static final UniversalRegion DALLAS
-
FRANKFURT
public static final UniversalRegion FRANKFURT
-
LONDON
public static final UniversalRegion LONDON
-
MUMBAI
public static final UniversalRegion MUMBAI
-
NEWARK
public static final UniversalRegion NEWARK
-
NEW_YORK_CITY
public static final UniversalRegion NEW_YORK_CITY
-
SAN_FRANCISCO
public static final UniversalRegion SAN_FRANCISCO
-
SINGAPORE
public static final UniversalRegion SINGAPORE
-
SYDNEY
public static final UniversalRegion SYDNEY
-
TOKYO
public static final UniversalRegion TOKYO
-
TORONTO
public static final UniversalRegion TORONTO
-
WASHINGTON_DC
public static final UniversalRegion WASHINGTON_DC
-
CHICAGO
public static final UniversalRegion CHICAGO
-
PARIS
public static final UniversalRegion PARIS
-
SEATTLE
public static final UniversalRegion SEATTLE
-
SAO_PAULO
public static final UniversalRegion SAO_PAULO
-
STOCKHOLM
public static final UniversalRegion STOCKHOLM
-
CHENNAI
public static final UniversalRegion CHENNAI
-
OSAKA
public static final UniversalRegion OSAKA
-
MILAN
public static final UniversalRegion MILAN
-
MIAMI
public static final UniversalRegion MIAMI
-
JAKARTA
public static final UniversalRegion JAKARTA
-
LOS_ANGELES
public static final UniversalRegion LOS_ANGELES
-
-
Method Detail
-
values
public static UniversalRegion[] 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 (UniversalRegion c : UniversalRegion.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UniversalRegion valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<UniversalRegion>
-
-