Home | History | Annotate | Download | only in collect

Lines Matching refs:predicate

20 import com.google.common.base.Predicate;
618 final Predicate<Object> inSet2 = Predicates.in(set2);
658 final Predicate<Object> notInSet2 = Predicates.not(Predicates.in(set2));
676 * Returns the elements of {@code unfiltered} that satisfy a predicate. The
683 * element that doesn't satisfy the predicate is provided. When methods such
694 * to copy {@code Iterables.filter(unfiltered, predicate)} and use the copy.
697 Set<E> unfiltered, Predicate<? super E> predicate) {
702 Predicate<E> combinedPredicate
703 = Predicates.<E>and(filtered.predicate, predicate);
709 checkNotNull(unfiltered), checkNotNull(predicate));
714 FilteredSet(Set<E> unfiltered, Predicate<? super E> predicate) {
715 super(unfiltered, predicate);