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
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "smoothStart".
public static final AnimationAcceleration SMOOTH_END
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "smoothEnd".
public static final AnimationAcceleration SMOOTH_START_END
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "smoothStartEnd".
public static final AnimationAcceleration NONE
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "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