public static enum SmoothMover.SmoothMoveType extends java.lang.Enum<SmoothMover.SmoothMoveType>
Modifier and Type | Method and Description |
---|---|
static SmoothMover.SmoothMoveType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SmoothMover.SmoothMoveType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SmoothMover.SmoothMoveType NONE
public static final SmoothMover.SmoothMoveType LINEAR
public static final SmoothMover.SmoothMoveType LOG
public static final SmoothMover.SmoothMoveType EXP
public static SmoothMover.SmoothMoveType[] values()
for (SmoothMover.SmoothMoveType c : SmoothMover.SmoothMoveType.values()) System.out.println(c);
public static SmoothMover.SmoothMoveType 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