public static enum Axis.Direction extends Enum<Axis.Direction>
| Enum Constant and Description |
|---|
DOWN |
EAST |
NORTH |
OTHER |
SOUTH |
UP |
WEST |
| Modifier and Type | Method and Description |
|---|---|
static Axis.Direction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Axis.Direction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Axis.Direction EAST
public static final Axis.Direction WEST
public static final Axis.Direction NORTH
public static final Axis.Direction SOUTH
public static final Axis.Direction UP
public static final Axis.Direction DOWN
public static final Axis.Direction OTHER
public static Axis.Direction[] values()
for (Axis.Direction c : Axis.Direction.values()) System.out.println(c);
public static Axis.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 © 2019 CNRS. All rights reserved.