public enum Region extends Enum<Region>
Enum Constant and Description |
---|
CUSTOM |
EUROPE |
NORTH_AMERICA |
Modifier and Type | Field and Description |
---|---|
static Region |
DEFAULT_REGION |
Modifier and Type | Method and Description |
---|---|
static Region |
fromNameOrCustom(String accountRegion) |
String |
getApperianUrl() |
String |
getEaseUrl() |
String |
getTitle() |
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 NORTH_AMERICA
public static final Region EUROPE
public static final Region CUSTOM
public static final Region DEFAULT_REGION
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 getApperianUrl()
public String getEaseUrl()
public String getTitle()
Copyright © 2004-2016. All Rights Reserved.