public enum EasingMode extends java.lang.Enum<EasingMode>
| Enum Constant and Description |
|---|
EASE_IN |
EASE_IN_OUT |
EASE_OUT |
| Modifier and Type | Method and Description |
|---|---|
float |
call(EasingFunction easingFunction,
float x) |
EasingMode |
invert() |
static EasingMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EasingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EasingMode EASE_IN
public static final EasingMode EASE_OUT
public static final EasingMode EASE_IN_OUT
public static EasingMode[] values()
for (EasingMode c : EasingMode.values()) System.out.println(c);
public static EasingMode 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 nullpublic float call(EasingFunction easingFunction, float x)
public EasingMode invert()