public enum EasingBehavior extends java.lang.Enum<EasingBehavior>
| Enum Constant and Description |
|---|
KEEP
Keep the easing mode when reversing the animation.
|
REVERSE
Keep the easing function when reversing the animation.
|
| Modifier and Type | Method and Description |
|---|---|
static EasingBehavior |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EasingBehavior[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EasingBehavior KEEP
public static final EasingBehavior REVERSE
public static EasingBehavior[] values()
for (EasingBehavior c : EasingBehavior.values()) System.out.println(c);
public static EasingBehavior 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