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 | 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, valueOf
name
public static final Mouse DragDetected
public static final Mouse EnteredTarget
public static final Mouse ExitedTarget
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 EnumEventType
Copyright © 2011–2016 JRebirth OSS. All rights reserved.