public enum UnbluUiVisibilityTransition extends java.lang.Enum<UnbluUiVisibilityTransition>
Enum Constant and Description |
---|
FADE_IN
State when UI starts to fade in
|
FADE_OUT
State when UI starts to fade out
|
FADED_IN
State after the UI has completely faded in and is fully usable
|
FADED_OUT
State after the UI has completely faded out and is not longer visible
|
Modifier and Type | Method and Description |
---|---|
static UnbluUiVisibilityTransition |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UnbluUiVisibilityTransition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UnbluUiVisibilityTransition FADE_IN
public static final UnbluUiVisibilityTransition FADED_IN
public static final UnbluUiVisibilityTransition FADE_OUT
public static final UnbluUiVisibilityTransition FADED_OUT
public static UnbluUiVisibilityTransition[] values()
for (UnbluUiVisibilityTransition c : UnbluUiVisibilityTransition.values()) System.out.println(c);
public static UnbluUiVisibilityTransition 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