JavaFX unfilter FilteredList
问题 I have got a ObservableList and I linked it to multiple CheckMenuItem it's shown in a TableView and I can filter out one predicate. I did that by using .filter(Predicate p) and updated my TableView to it's return value. When I wanted to unfilter, I simply set it back on my ObservableList . But I can't wrap my head around on how to remove multiple filteres to my ObservableList . I can apply them if i just keep using .filter(Predicate p) with different predicates on the returned lists, but how