public static enum EnumWrappers.Direction extends Enum<EnumWrappers.Direction>
| Modifier and Type | Method and Description |
|---|---|
static EnumWrappers.Direction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EnumWrappers.Direction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumWrappers.Direction DOWN
public static final EnumWrappers.Direction UP
public static final EnumWrappers.Direction NORTH
public static final EnumWrappers.Direction SOUTH
public static final EnumWrappers.Direction WEST
public static final EnumWrappers.Direction EAST
public static EnumWrappers.Direction[] values()
for (EnumWrappers.Direction c : EnumWrappers.Direction.values()) System.out.println(c);
public static EnumWrappers.Direction 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 © 2012–2017 Comphenix and dmulloy2. Licensed under the GNU GPL v2.