public static enum Animation.Easing extends Enum<Animation.Easing>
Animation.setEasing(Animation.Easing). Note that more easing functions are
supported via jQuery plugins, in
which case you'll want to use the general Animation.setEasing(String) method
instead to set the easing to a specific string (instead of being restricted to the easing
types included in this enumeration.)| Enum Constant and Description |
|---|
LINEAR
Displays a constant pace transition.
|
SWING
Displays the default jQuery easing transition.
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static Animation.Easing |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Animation.Easing[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Animation.Easing LINEAR
public static final Animation.Easing SWING
public static Animation.Easing[] values()
for (Animation.Easing c : Animation.Easing.values()) System.out.println(c);
public static Animation.Easing valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String toString()
toString in class Enum<Animation.Easing>Copyright © 2015. All Rights Reserved.