Module javafx.base

Class FilteredList<E>

java.lang.Object
Type Parameters:
E - the list element type
All Implemented Interfaces:
Iterable<E>, Collection<E>, List<E>, SequencedCollection<E>, Observable, ObservableList<E>

public final class FilteredList<E> extends TransformationList<E,E>
Wraps an ObservableList and filters its content using the provided Predicate. All changes in the ObservableList are propagated immediately to the FilteredList.
Since:
JavaFX 8.0
See Also: