public static enum Axis.Movement extends Enum<Axis.Movement>
| Enum Constant and Description |
|---|
BottomToTop |
LeftToRight |
| Modifier and Type | Method and Description |
|---|---|
static Axis.Movement |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Axis.Movement[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Axis.Movement LeftToRight
public static final Axis.Movement BottomToTop
public static Axis.Movement[] values()
for (Axis.Movement c : Axis.Movement.values()) System.out.println(c);
public static Axis.Movement 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 © 2017 OpenSource BIM. All rights reserved.