| Enum Constant and Description |
|---|
NEXT_VALUE
Curve value of a segment always uses the value from the next key frame
|
PREVIOUS_VALUE
Curve value of a segment always uses the value from previous key frame
|
| Modifier and Type | Method and Description |
|---|---|
static StepMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StepMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StepMode PREVIOUS_VALUE
public static final StepMode NEXT_VALUE
public static StepMode[] values()
for (StepMode c : StepMode.values()) System.out.println(c);
public static StepMode 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