Searched defs:FilteredCollection (Results 1 - 1 of 1) sorted by relevance

/external/guava/guava/src/com/google/common/collect/
H A DCollections2.java80 if (unfiltered instanceof FilteredCollection) {
83 return ((FilteredCollection<E>) unfiltered).createCombined(predicate);
86 return new FilteredCollection<E>(
102 static class FilteredCollection<E> implements Collection<E> { class in class:Collections2
106 FilteredCollection(Collection<E> unfiltered, method in class:Collections2.FilteredCollection
112 FilteredCollection<E> createCombined(Predicate<? super E> newPredicate) {
113 return new FilteredCollection<E>(unfiltered,

Completed in 110 milliseconds