public static enum WindowEvent.Type extends Enum<WindowEvent.Type>
Enum Constant and Description |
---|
WINDOW_ACTIVATED
The window was activated.
|
WINDOW_CLOSED
The window was closed.
|
WINDOW_CLOSING
The window is about to be closed.
|
WINDOW_DEACTIVATED
The window was deactivated.
|
WINDOW_DEICONIFIED
A window that was minimized to an icon was restored.
|
WINDOW_ICONIFIED
A window was minimized to an icon.
|
WINDOW_OPENED
The window was opened.
|
Modifier and Type | Method and Description |
---|---|
static WindowEvent.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WindowEvent.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WindowEvent.Type WINDOW_ACTIVATED
public static final WindowEvent.Type WINDOW_CLOSING
public static final WindowEvent.Type WINDOW_CLOSED
public static final WindowEvent.Type WINDOW_DEACTIVATED
public static final WindowEvent.Type WINDOW_DEICONIFIED
public static final WindowEvent.Type WINDOW_ICONIFIED
public static final WindowEvent.Type WINDOW_OPENED
public static WindowEvent.Type[] values()
for (WindowEvent.Type c : WindowEvent.Type.values()) System.out.println(c);
public static WindowEvent.Type 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 The JGUIraffe Team. All rights reserved.