public enum Region extends Enum<Region>
| Enum Constant and Description |
|---|
AP_NORTHEAST_1
アジアパシフィック北東1(東京)
|
| Modifier and Type | Method and Description |
|---|---|
String |
getName() |
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 AP_NORTHEAST_1
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 getName()
Copyright © 2016 Game Server Services, Inc. AllRights Reserved.