public enum ERegionCode extends java.lang.Enum<ERegionCode>
| Enum Constant and Description |
|---|
Africa |
Asia |
Australia |
Europe |
MiddleEast |
SouthAmerica |
USEast |
USWest |
World |
| Modifier and Type | Method and Description |
|---|---|
byte |
code() |
static ERegionCode |
from(byte code) |
static ERegionCode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ERegionCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ERegionCode USEast
public static final ERegionCode USWest
public static final ERegionCode SouthAmerica
public static final ERegionCode Europe
public static final ERegionCode Asia
public static final ERegionCode Australia
public static final ERegionCode MiddleEast
public static final ERegionCode Africa
public static final ERegionCode World
public static ERegionCode[] values()
for (ERegionCode c : ERegionCode.values()) System.out.println(c);
public static ERegionCode valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic byte code()
public static ERegionCode from(byte code)