public static enum Interpolator.Result extends Enum<Interpolator.Result>
Enum Constant and Description |
---|
FREEZE_END |
FREEZE_START |
NORMAL |
Modifier and Type | Method and Description |
---|---|
static Interpolator.Result |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Interpolator.Result[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Interpolator.Result NORMAL
public static final Interpolator.Result FREEZE_START
public static final Interpolator.Result FREEZE_END
public static Interpolator.Result[] values()
for (Interpolator.Result c : Interpolator.Result.values()) System.out.println(c);
public static Interpolator.Result 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 null