public enum Window extends Enum<Window> implements EnumEventType
| Enum Constant and Description |
|---|
Any
Any Swipe Event.
|
CloseRequest
Window close requested event.
|
Hidden
Window hidden event.
|
Hiding
Window hiding event.
|
Showing
Window showing event.
|
Shown
Window shown event.
|
| Modifier and Type | Field and Description |
|---|---|
private EventType<?> |
eventType
The JavaFX internal api name.
|
| Modifier and Type | Method and Description |
|---|---|
EventType<?> |
eventType()
Return the javaFX event type.
|
static Window |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Window[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfnamepublic static final Window Any
public static final Window CloseRequest
public static final Window Hidden
public static final Window Hiding
public static final Window Showing
public static final Window Shown
private EventType<?> eventType
public static Window[] values()
for (Window c : Window.values()) System.out.println(c);
public static Window 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 nullpublic EventType<?> eventType()
eventType in interface EnumEventTypeCopyright © 2011–2015 JRebirth OSS. All rights reserved.