public enum WindowInteractionState extends java.lang.Enum<WindowInteractionState> implements INativeEnum
Enum Constant and Description |
---|
BlockedByModalWindow
The window is blocked by a modal window.
|
Closing
The window is closing.
|
NotResponding
The window is not responding.
|
ReadyForUserInteraction
The window is ready for user interaction.
|
Running
The window is running.
|
Modifier and Type | Method and Description |
---|---|
static java.util.Optional<WindowInteractionState> |
fromNativeValue(int nativeValue) |
java.lang.String |
getConstantName() |
int |
getNativeValue() |
static WindowInteractionState |
valueOf(java.lang.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 Running
public static final WindowInteractionState Closing
public static final WindowInteractionState ReadyForUserInteraction
public static final WindowInteractionState BlockedByModalWindow
public static final WindowInteractionState NotResponding
public static WindowInteractionState[] values()
for (WindowInteractionState c : WindowInteractionState.values()) System.out.println(c);
public static WindowInteractionState 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 nullpublic int getNativeValue()
getNativeValue
in interface INativeEnum
public java.lang.String getConstantName()
getConstantName
in interface INativeEnum
public static java.util.Optional<WindowInteractionState> fromNativeValue(int nativeValue)