public enum Drag extends Enum<Drag> implements EnumEventType
| Enum Constant and Description |
|---|
Any
Any Drag Event.
|
Done
Drag done event.
|
Dropped
Drag dropped event.
|
Entered
Drag entered event.
|
EnteredTarget
Drag entered target event.
|
Exited
Drag exited event.
|
ExitedTarget
Drag exited target event.
|
Over
Drag over 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 Drag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Drag[] |
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 Drag Any
public static final Drag Done
public static final Drag Dropped
public static final Drag Entered
public static final Drag EnteredTarget
public static final Drag Exited
public static final Drag ExitedTarget
public static final Drag Over
private EventType<?> eventType
public static Drag[] values()
for (Drag c : Drag.values()) System.out.println(c);
public static Drag 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.