public enum Region extends Enum<Region>
| Enum Constant and Description |
|---|
CN_N1 |
| Modifier and Type | Method and Description |
|---|---|
static Region |
fromValue(String regionId)
Returns the BCE Region enumeration value representing the specified BCE Region ID string.
|
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 CN_N1
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 static Region fromValue(String regionId)
IllegalArgumentException is thrown.regionId - The BCE region ID string.NullPointerException - regionId should not be null.Copyright © 2020. All rights reserved.