public enum Region extends Enum<Region>
Modifier and Type | Method and Description |
---|---|
static Region |
fromString(String value) |
String |
getAPIHost() |
String |
getDisplayName() |
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 US
public static final Region US2
public static final Region US3
public static final Region CA
public static final Region EU
public static final Region AU
public static final Region AP
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 getDisplayName()
public String getAPIHost()
Copyright © 2016–2023. All rights reserved.