public static enum OnDrag.DragType extends Enum<OnDrag.DragType> 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 OnDrag.DragType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OnDrag.DragType[] |
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 OnDrag.DragType Any
public static final OnDrag.DragType Done
public static final OnDrag.DragType Dropped
public static final OnDrag.DragType Entered
public static final OnDrag.DragType EnteredTarget
public static final OnDrag.DragType Exited
public static final OnDrag.DragType ExitedTarget
public static final OnDrag.DragType Over
private EventType<?> eventType
public static OnDrag.DragType[] values()
for (OnDrag.DragType c : OnDrag.DragType.values()) System.out.println(c);
public static OnDrag.DragType 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–2014 JRebirth OSS. All rights reserved.