public enum Region extends Enum<Region>
Enum Constant and Description |
---|
Ashburn |
Bangkok |
Beijing |
Chengdu |
Chongqing |
Frankfurt |
Guangzhou |
GuangzhouOpen |
HongKong |
Moscow |
Mumbai |
Seoul |
Shanghai |
ShanghaiFSI |
ShenzhenFSI |
SiliconValley |
Singapore |
Tokyo |
Toronto |
Modifier and Type | Method and Description |
---|---|
String |
getValue() |
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.
|
public static final Region Bangkok
public static final Region Beijing
public static final Region Chengdu
public static final Region Chongqing
public static final Region Guangzhou
public static final Region GuangzhouOpen
public static final Region HongKong
public static final Region Mumbai
public static final Region Seoul
public static final Region Shanghai
public static final Region ShanghaiFSI
public static final Region ShenzhenFSI
public static final Region Singapore
public static final Region Tokyo
public static final Region Frankfurt
public static final Region Moscow
public static final Region Ashburn
public static final Region SiliconValley
public static final Region Toronto
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 getValue()
Copyright © 2021. All rights reserved.