public enum MotionBasis extends java.lang.Enum<MotionBasis>
| Enum Constant and Description |
|---|
MOTION_ABSOLUTE |
MOTION_PERCENT |
MOTION_TIME |
| Modifier and Type | Method and Description |
|---|---|
static MotionBasis |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MotionBasis[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MotionBasis MOTION_ABSOLUTE
public static final MotionBasis MOTION_PERCENT
public static final MotionBasis MOTION_TIME
public static MotionBasis[] values()
for (MotionBasis c : MotionBasis.values()) System.out.println(c);
public static MotionBasis valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null