public static enum Easing.Type extends java.lang.Enum<Easing.Type>
| Enum Constant and Description |
|---|
CUBIC_INOUT |
EXPO_OUT |
LINEAR |
QUAD_INOUT |
QUART_INOUT |
QUINT_INOUT |
SINE_INOUT |
| Modifier and Type | Method and Description |
|---|---|
static Easing.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Easing.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Easing.Type LINEAR
public static final Easing.Type SINE_INOUT
public static final Easing.Type EXPO_OUT
public static final Easing.Type QUAD_INOUT
public static final Easing.Type CUBIC_INOUT
public static final Easing.Type QUART_INOUT
public static final Easing.Type QUINT_INOUT
public static Easing.Type[] values()
for (Easing.Type c : Easing.Type.values()) System.out.println(c);
public static Easing.Type 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