public enum WindowInteractionState extends Enum<WindowInteractionState>
| Enum Constant and Description |
|---|
WindowInteractionState_BlockedByModalWindow
The value of this constant is 3
|
WindowInteractionState_Closing
The value of this constant is 1
|
WindowInteractionState_NotResponding
The value of this constant is 4
|
WindowInteractionState_ReadyForUserInteraction
The value of this constant is 2
|
WindowInteractionState_Running
The value of this constant is 0
|
| Modifier and Type | Method and Description |
|---|---|
static WindowInteractionState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WindowInteractionState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WindowInteractionState WindowInteractionState_Running
The value of this constant is 0
public static final WindowInteractionState WindowInteractionState_Closing
The value of this constant is 1
public static final WindowInteractionState WindowInteractionState_ReadyForUserInteraction
The value of this constant is 2
public static final WindowInteractionState WindowInteractionState_BlockedByModalWindow
The value of this constant is 3
public static final WindowInteractionState WindowInteractionState_NotResponding
The value of this constant is 4
public static WindowInteractionState[] values()
for (WindowInteractionState c : WindowInteractionState.values()) System.out.println(c);
public static WindowInteractionState 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 nullCopyright © 2016. All rights reserved.