java.lang.Object
java.util.AbstractCollection<E>
java.util.AbstractList<E>
javafx.collections.ObservableListBase<E>
javafx.collections.transformation.TransformationList<E,E>
javafx.collections.transformation.SortedList<E>
- Type Parameters:
E
- the list element type
- All Implemented Interfaces:
Iterable<E>
,Collection<E>
,List<E>
,SequencedCollection<E>
,Observable
,ObservableList<E>
Wraps an ObservableList and sorts its content.
All changes in the ObservableList are propagated immediately
to the SortedList.
Note: invalid SortedList (as a result of broken comparison) doesn't send any notification to listeners on becoming
valid again.
- Since:
- JavaFX 8.0
- See Also:
-
Property Summary
TypePropertyDescriptionfinal ObjectProperty
<Comparator<? super E>> The comparator that denotes the order of this SortedList. -
Field Summary
Fields declared in class java.util.AbstractList
modCount
-
Constructor Summary
ConstructorDescriptionSortedList
(ObservableList<? extends E> source) Constructs a new unordered SortedList wrapper around the source list.SortedList
(ObservableList<? extends E> source, Comparator<? super E> comparator) Creates a new SortedList wrapped around the source list. -
Method Summary
Modifier and TypeMethodDescriptionfinal ObjectProperty
<Comparator<? super E>> The comparator that denotes the order of this SortedList.get
(int index) Returns the element at the specified position in this list.final Comparator
<? super E> Gets the value of thecomparator
property.int
getSourceIndex
(int index) Maps the index of this list's element to an index in the direct source list.int
getViewIndex
(int index) Maps the index of the direct source list's element to an index in this list.final void
setComparator
(Comparator<? super E> comparator) Sets the value of thecomparator
property.int
size()
Returns the number of elements in this list.protected void
sourceChanged
(ListChangeListener.Change<? extends E> c) Called when a change from the source is triggered.Methods declared in class javafx.collections.transformation.TransformationList
getSource, getSourceIndexFor, isInTransformationChain
Methods declared in class javafx.collections.ObservableListBase
addAll, addListener, addListener, beginChange, endChange, fireChange, hasListeners, nextAdd, nextPermutation, nextRemove, nextRemove, nextReplace, nextSet, nextUpdate, remove, removeAll, removeListener, removeListener, retainAll, setAll, setAll
Methods declared in class java.util.AbstractList
add, add, addAll, clear, equals, hashCode, indexOf, iterator, lastIndexOf, listIterator, listIterator, remove, removeRange, set, subList
Methods declared in class java.util.AbstractCollection
addAll, contains, containsAll, isEmpty, remove, removeAll, retainAll, toArray, toArray, toString
Methods declared in class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods declared in interface java.util.Collection
parallelStream, removeIf, stream, toArray
Methods declared in interface java.util.List
add, add, addAll, addAll, addFirst, addLast, clear, contains, containsAll, equals, getFirst, getLast, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, removeFirst, removeLast, replaceAll, retainAll, reversed, set, sort, spliterator, subList, toArray, toArray
Methods declared in interface javafx.beans.Observable
subscribe
Methods declared in interface javafx.collections.ObservableList
filtered, sorted, sorted
-
Property Details
-
comparator
The comparator that denotes the order of this SortedList. Null for unordered SortedList.- See Also:
-
-
Constructor Details
-
SortedList
Creates a new SortedList wrapped around the source list. The source list will be sorted using the comparator provided. If null is provided, the list stays unordered and is equal to the source list.- Parameters:
source
- a list to wrapcomparator
- a comparator to use or null for unordered List
-
SortedList
Constructs a new unordered SortedList wrapper around the source list.- Parameters:
source
- the source list- See Also:
-
-
Method Details
-
sourceChanged
Description copied from class:TransformationList
Called when a change from the source is triggered.- Specified by:
sourceChanged
in classTransformationList<E,
E> - Parameters:
c
- the change
-
comparatorProperty
The comparator that denotes the order of this SortedList. Null for unordered SortedList.- Returns:
- the
comparator
property - See Also:
-
getComparator
Gets the value of thecomparator
property.- Property description:
- The comparator that denotes the order of this SortedList. Null for unordered SortedList.
- Returns:
- the value of the
comparator
property - See Also:
-
setComparator
Sets the value of thecomparator
property.- Property description:
- The comparator that denotes the order of this SortedList. Null for unordered SortedList.
- Parameters:
comparator
- the value for thecomparator
property- See Also:
-
get
Returns the element at the specified position in this list. -
size
public int size()Returns the number of elements in this list.- Specified by:
size
in interfaceCollection<E>
- Specified by:
size
in interfaceList<E>
- Specified by:
size
in classAbstractCollection<E>
- Returns:
- the number of elements in this list
-
getSourceIndex
public int getSourceIndex(int index) Description copied from class:TransformationList
Maps the index of this list's element to an index in the direct source list.- Specified by:
getSourceIndex
in classTransformationList<E,
E> - Parameters:
index
- the index in this list- Returns:
- the index of the element's origin in the source list
- See Also:
-
getViewIndex
public int getViewIndex(int index) Description copied from class:TransformationList
Maps the index of the direct source list's element to an index in this list.- Specified by:
getViewIndex
in classTransformationList<E,
E> - Parameters:
index
- the index in the source list- Returns:
- the index of the element in this list if it is contained in this list or negative value otherwise
- See Also:
-