java.lang.Object
java.util.EventObject
javafx.event.Event
javafx.scene.control.SortEvent<C>
- Type Parameters:
- C- the type of control
- All Implemented Interfaces:
- Serializable,- Cloneable
public class SortEvent<C> extends Event
Event related to 
TableView and TreeTableView sorting.- Since:
- JavaFX 8.0
- See Also:
- Serialized Form
- 
Field SummaryFields Modifier and Type Field Description static EventType<SortEvent>ANYCommon supertype for all sort event types.Fields declared in class javafx.event.Eventconsumed, eventType, NULL_SOURCE_TARGET, targetFields declared in class java.util.EventObjectsource
- 
Constructor SummaryConstructors Constructor Description SortEvent(C source, EventTarget target)Constructs a newSortEventwith the specified event source and target.
- 
Method SummaryMethods declared in class javafx.event.Eventclone, consume, copyFor, fireEvent, getEventType, getTarget, isConsumedMethods declared in class java.util.EventObjectgetSource, toString
- 
Field Details- 
ANYCommon supertype for all sort event types.
 
- 
- 
Constructor Details- 
SortEventConstructs a newSortEventwith the specified event source and target. If the source or target is set tonull, it is replaced by theNULL_SOURCE_TARGETvalue.- Parameters:
- source- the event source which sent the event
- target- the target of the event
 
 
- 
- 
Method Details- 
sortEventGets the default singletonSortEvent.- Type Parameters:
- C- the type of control
- Returns:
- the default singleton SortEvent
 
 
-