Uses of Class
org.apache.commons.collections4.collection.PredicatedCollection.Builder
-
Packages that use PredicatedCollection.Builder Package Description org.apache.commons.collections4.collection This package contains implementations of theCollectioninterface. -
-
Uses of PredicatedCollection.Builder in org.apache.commons.collections4.collection
Methods in org.apache.commons.collections4.collection that return PredicatedCollection.Builder Modifier and Type Method Description PredicatedCollection.Builder<E>PredicatedCollection.Builder. add(E item)Adds the item to the builder.PredicatedCollection.Builder<E>PredicatedCollection.Builder. addAll(java.util.Collection<? extends E> items)Adds all elements from the given collection to the builder.static <E> PredicatedCollection.Builder<E>PredicatedCollection. builder(Predicate<? super E> predicate)Returns a Builder with the given predicate.static <E> PredicatedCollection.Builder<E>PredicatedCollection. notNullBuilder()Returns a Builder with a NotNullPredicate.
-