public enum AnimationAcceleration extends java.lang.Enum<AnimationAcceleration> implements ValueEnum
| Enum Constant and Description |
|---|
NONE
- no bias
|
SMOOTH_END
- animation will slow down as time elapses
|
SMOOTH_START
- animation will speed up as time elapses
|
SMOOTH_START_END
- animation will speed up in the middle
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue() |
static AnimationAcceleration |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AnimationAcceleration[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AnimationAcceleration SMOOTH_START
public static final AnimationAcceleration SMOOTH_END
public static final AnimationAcceleration SMOOTH_START_END
public static final AnimationAcceleration NONE
public static AnimationAcceleration[] values()
for (AnimationAcceleration c : AnimationAcceleration.values()) System.out.println(c);
public static AnimationAcceleration 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