public enum AppWindowState extends Enum<AppWindowState>
| Enum Constant and Description |
|---|
ACTIVATED |
CLOSED |
CLOSING |
DEACTIVATED |
DEICONIFIED |
ICONIFIED |
MAXIMIZED_BOTH |
MAXIMIZED_HORIZ |
MAXIMIZED_VERT |
NORMAL |
OPENED |
OPENING |
| Modifier and Type | Method and Description |
|---|---|
static AppWindowState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AppWindowState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AppWindowState ICONIFIED
public static final AppWindowState DEICONIFIED
public static final AppWindowState OPENING
public static final AppWindowState OPENED
public static final AppWindowState CLOSING
public static final AppWindowState CLOSED
public static final AppWindowState NORMAL
public static final AppWindowState ACTIVATED
public static final AppWindowState DEACTIVATED
public static final AppWindowState MAXIMIZED_BOTH
public static final AppWindowState MAXIMIZED_HORIZ
public static final AppWindowState MAXIMIZED_VERT
public static AppWindowState[] values()
for (AppWindowState c : AppWindowState.values()) System.out.println(c);
public static AppWindowState 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 © 2021 vpc open source initiative. All rights reserved.