public enum Zoom extends Enum<Zoom> implements EnumEventType
| Enum Constant and Description |
|---|
Any
Any Zoom Event.
|
Finished
Zoom finished event.
|
Started
Zoom started event.
|
Zoom
Zoom 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 Zoom |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Zoom[] |
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 Zoom Any
public static final Zoom Started
public static final Zoom Zoom
public static final Zoom Finished
private EventType<?> eventType
public static Zoom[] values()
for (Zoom c : Zoom.values()) System.out.println(c);
public static Zoom 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.