public enum FadeStateType extends java.lang.Enum<FadeStateType>
| Enum Constant and Description |
|---|
fadeIn
Fading-in.
|
fadeOut
Fading-out.
|
none
Not animating.
|
| Modifier and Type | Method and Description |
|---|---|
static FadeStateType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FadeStateType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FadeStateType none
public static final FadeStateType fadeIn
public static final FadeStateType fadeOut
public static FadeStateType[] values()
for (FadeStateType c : FadeStateType.values()) System.out.println(c);
public static FadeStateType 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