public enum Region extends Enum<Region>
| Enum Constant and Description |
|---|
BR |
EUNE |
EUW |
KR |
LAN |
LAS |
NA |
OCE |
RU |
TR |
| Modifier and Type | Method and Description |
|---|---|
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 NA
public static final Region EUW
public static final Region EUNE
public static final Region BR
public static final Region TR
public static final Region LAN
public static final Region LAS
public static final Region OCE
public static final Region RU
public static final Region KR
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 nullCopyright © 2014. All rights reserved.