public enum LostFocusBehavior extends java.lang.Enum<LostFocusBehavior>
| Enum Constant and Description | 
|---|
Disabled
No lost focus behavior. 
 | 
PauseOnLostFocus
The application will not update when unfocused. 
 | 
ThrottleOnLostFocus
The application will update at a reduced rate when unfocused. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static LostFocusBehavior | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static LostFocusBehavior[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final LostFocusBehavior Disabled
public static final LostFocusBehavior PauseOnLostFocus
public static final LostFocusBehavior ThrottleOnLostFocus
Disabled and
 PauseOnLostFocus, allowing the application to update at a
 reduced rate (20 updates per second), but without rendering.public static LostFocusBehavior[] values()
for (LostFocusBehavior c : LostFocusBehavior.values()) System.out.println(c);
public static LostFocusBehavior 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