public enum FocusCause extends java.lang.Enum<FocusCause>
Enum Constant and Description |
---|
ACTIVATED
A (top-level or embedded) stage is activated for some other reason.
|
DEACTIVATED
A (top-level or embedded) stage is deactivated.
|
TRAVERSED_BACKWARD
An (embedded) stage is activated as a result of backward focus
traversal.
|
TRAVERSED_FORWARD
An (embedded) stage is activated as a result of forward focus
traversal.
|
Modifier and Type | Method and Description |
---|---|
static FocusCause |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FocusCause[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FocusCause TRAVERSED_FORWARD
public static final FocusCause TRAVERSED_BACKWARD
public static final FocusCause ACTIVATED
public static final FocusCause DEACTIVATED
public static FocusCause[] values()
for (FocusCause c : FocusCause.values()) System.out.println(c);
public static FocusCause 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