public enum Mouse extends Enum<Mouse> implements EnumEventType
| Enum Constant and Description |
|---|
Any
Any Rotate Event.
|
Clicked
Mouse clicked event.
|
DragDetected
Mouse drag detected event.
|
Dragged
Mouse dragged event.
|
Entered
Mouse entered event.
|
EnteredTarget
Mouse entered target event.
|
Exited
Mouse exited event.
|
ExitedTarget
Mouse exited target event.
|
Moved
Mouse moved event.
|
Pressed
Mouse pressed event.
|
Released
Mouse released 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 Mouse |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Mouse[] |
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 Mouse Any
public static final Mouse DragDetected
public static final Mouse Clicked
public static final Mouse Dragged
public static final Mouse Entered
public static final Mouse EnteredTarget
public static final Mouse Exited
public static final Mouse ExitedTarget
public static final Mouse Moved
public static final Mouse Pressed
public static final Mouse Released
private EventType<?> eventType
public static Mouse[] values()
for (Mouse c : Mouse.values()) System.out.println(c);
public static Mouse 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.