|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<AnimationAcceleration>
com.smartgwt.client.types.AnimationAcceleration
public enum AnimationAcceleration
Acceleration effect for animations. Can either be a ratio function or a string. Ratio functions take a value between 0
and 1 which represents how much of the animation's duration has elapsed, and return another value between 0 and 1
indicating how close the animation is to completion. For a completely linear animation, the function would return the
value it was passed. This allows you to bias animations to [for example] speed up toward the end of the animation.
The following strings are also supported for common ratio bias effects:
| Enum Constant Summary | |
|---|---|
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 |
|
| Method Summary | |
|---|---|
String |
getValue()
|
static AnimationAcceleration |
valueOf(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. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final AnimationAcceleration SMOOTH_START
public static final AnimationAcceleration SMOOTH_END
public static final AnimationAcceleration SMOOTH_START_END
public static final AnimationAcceleration NONE
| Method Detail |
|---|
public static AnimationAcceleration[] values()
for (AnimationAcceleration c : AnimationAcceleration.values()) System.out.println(c);
public static AnimationAcceleration valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is nullpublic String getValue()
getValue in interface ValueEnum
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||