Uses of Interface
com.helger.commons.functional.IPredicate
-
Packages that use IPredicate Package Description com.helger.commons.collection.iterate com.helger.commons.functional com.helger.commons.io.file -
-
Uses of IPredicate in com.helger.commons.collection.iterate
Methods in com.helger.commons.collection.iterate that return IPredicate Modifier and Type Method Description IPredicate<? super ELEMENTTYPE>FilterIterator. getFilter()Methods in com.helger.commons.collection.iterate with parameters of type IPredicate Modifier and Type Method Description default IIterableIterator<ELEMENTTYPE>IIterableIterator. withFilter(IPredicate<? super ELEMENTTYPE> aFilter)Constructors in com.helger.commons.collection.iterate with parameters of type IPredicate Constructor Description FilterIterator(IIterableIterator<? extends ELEMENTTYPE> aBaseIter, IPredicate<? super ELEMENTTYPE> aFilter)Constructor.FilterIterator(Iterable<? extends ELEMENTTYPE> aBaseCont, IPredicate<? super ELEMENTTYPE> aFilter)Constructor.FilterIterator(Iterator<? extends ELEMENTTYPE> aBaseIter, IPredicate<? super ELEMENTTYPE> aFilter)Constructor. -
Uses of IPredicate in com.helger.commons.functional
Methods in com.helger.commons.functional that return IPredicate Modifier and Type Method Description static <DATATYPE> IPredicate<DATATYPE>IPredicate. all()static <DATATYPE> IPredicate<DATATYPE>IPredicate. and(Predicate<? super DATATYPE> aFirst, Predicate<? super DATATYPE> aSecond)default IPredicate<T>IPredicate. and(Predicate<? super T> other)Returns a composed predicate that represents a short-circuiting logical AND of this predicate and another.static <T> IPredicate<T>IPredicate. isEqual(Object aCmpTo)Returns a predicate that tests if two arguments are equal according toObjects.equals(Object, Object).static <DATATYPE> IPredicate<DATATYPE>IPredicate. isNull()default IPredicate<T>IPredicate. negate()Returns a predicate that represents the logical negation of this predicate.static <DATATYPE> IPredicate<DATATYPE>IPredicate. none()static <DATATYPE> IPredicate<DATATYPE>IPredicate. notNull()static <DATATYPE> IPredicate<DATATYPE>IPredicate. or(Predicate<? super DATATYPE> aFirst, Predicate<? super DATATYPE> aSecond)default IPredicate<T>IPredicate. or(Predicate<? super T> other)Returns a composed predicate that represents a short-circuiting logical OR of this predicate and another. -
Uses of IPredicate in com.helger.commons.io.file
Subinterfaces of IPredicate in com.helger.commons.io.file Modifier and Type Interface Description interfaceIFileFilterMethods in com.helger.commons.io.file that return IPredicate Modifier and Type Method Description IPredicate<File>FileSystemRecursiveIterator. getRecursionFilter()Constructors in com.helger.commons.io.file with parameters of type IPredicate Constructor Description FileSystemRecursiveIterator(File aBaseDir, IPredicate<File> aRecursionFilter)Constructor for recursively iterating a file system directory.FileSystemRecursiveIterator(String sBaseDir, IPredicate<File> aRecursionFilter)Constructor for recursively iterating a file system directory.
-