Enum Constant and Description |
---|
EASE_IN_AND_OUT
Start changing slowly, accelerate, then slowly again.
|
ELASTIC
The value quickly increases and wobbles around the final value before settling.
|
LINEAR
The default simple linear interpolation.
|
NONE
Don't animate the transition.
|
Modifier and Type | Method and Description |
---|---|
static Curve |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Curve[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Curve LINEAR
public static final Curve NONE
public static final Curve EASE_IN_AND_OUT
public static final Curve ELASTIC
public static Curve[] values()
for (Curve c : Curve.values()) System.out.println(c);
public static Curve 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