javafx.scene.input
Class InputEvent
- java.util.EventObject
-
- javafx.event.Event
-
- javafx.scene.input.InputEvent
All Implemented Interfaces:
Direct Known Subclasses:
ContextMenuEvent, DragEvent, GestureEvent, InputMethodEvent, KeyEvent, MouseEvent, TouchEvent
public class InputEvent extends Event
An event indicating a user input.
Since:
JavaFX 2.0
See Also:
-
Field Summary
Fields Modifier and Type Field and Description static EventType<InputEvent>ANYCommon supertype for all input event types.-
Fields inherited from class javafx.event.Event
consumed, eventType, NULL_SOURCE_TARGET, target
-
Fields inherited from class java.util.EventObject
source
-
-
Constructor Summary
Constructors Constructor and Description InputEvent(EventType<? extends InputEvent> eventType)Creates new instance of InputEvent.InputEvent(Object source, EventTarget target, EventType<? extends InputEvent> eventType)Creates new instance of InputEvent.
-
Method Summary
All MethodsInstance MethodsConcrete Methods Modifier and Type Method and Description EventType<? extends InputEvent>getEventType()Gets the event type of this event.-
Methods inherited from class javafx.event.Event
clone, consume, copyFor, fireEvent, getTarget, isConsumed
-
Methods inherited from class java.util.EventObject
getSource, toString
-
-
Field Detail
-
ANY
public static final EventType<InputEvent> ANY
Common supertype for all input event types.
-
-
Constructor Detail
-
InputEvent
public InputEvent(EventType<? extends InputEvent> eventType)
Creates new instance of InputEvent.Parameters:
eventType- Type of the event
-
InputEvent
public InputEvent(Object source, EventTarget target, EventType<? extends InputEvent> eventType)Creates new instance of InputEvent.Parameters:
source- Event source
-
-
Method Detail
-
getEventType
public EventType<? extends InputEvent> getEventType()
Description copied from class:EventGets the event type of this event. Objects of the sameEventclass can have different event types. These event types further specify what kind of event occurred.Overrides:
getEventTypein classEventReturns:
the event type
-
© 2008, 2025, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from JavaFX API Documentation.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Java, JavaFX and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.