public enum WindowVisualState extends Enum<WindowVisualState>
| Enum Constant and Description |
|---|
WindowVisualState_Maximized
The value of this constant is 1
|
WindowVisualState_Minimized
The value of this constant is 2
|
WindowVisualState_Normal
The value of this constant is 0
|
| Modifier and Type | Method and Description |
|---|---|
static WindowVisualState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WindowVisualState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WindowVisualState WindowVisualState_Normal
The value of this constant is 0
public static final WindowVisualState WindowVisualState_Maximized
The value of this constant is 1
public static final WindowVisualState WindowVisualState_Minimized
The value of this constant is 2
public static WindowVisualState[] values()
for (WindowVisualState c : WindowVisualState.values()) System.out.println(c);
public static WindowVisualState 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.