Uses of Interface
org.apache.commons.io.function.IOPredicate
-
Packages that use IOPredicate Package Description org.apache.commons.io.function Provides IO-only related functional interfaces for lambda expressions and method references. -
-
Uses of IOPredicate in org.apache.commons.io.function
Methods in org.apache.commons.io.function that return IOPredicate Modifier and Type Method Description static <T> IOPredicate<T>
IOPredicate. alwaysFalse()
Always false.static <T> IOPredicate<T>
IOPredicate. alwaysTrue()
Always true.default IOPredicate<T>
IOPredicate. and(IOPredicate<? super T> other)
Creates a composed predicate that represents a short-circuiting logical AND of this predicate and another.static <T> IOPredicate<T>
IOPredicate. isEqual(java.lang.Object target)
Creates a predicate that tests if two arguments are equal usingObjects.equals(Object, Object)
.default IOPredicate<T>
IOPredicate. negate()
Creates a predicate that represents the logical negation of this predicate.default IOPredicate<T>
IOPredicate. or(IOPredicate<? super T> other)
Creates a composed predicate that represents a short-circuiting logical OR of this predicate and another.Methods in org.apache.commons.io.function with parameters of type IOPredicate Modifier and Type Method Description default boolean
IOStream. allMatch(IOPredicate<? super T> predicate)
LikeStream.allMatch(java.util.function.Predicate)
but throwsIOException
.default IOPredicate<T>
IOPredicate. and(IOPredicate<? super T> other)
Creates a composed predicate that represents a short-circuiting logical AND of this predicate and another.default boolean
IOStream. anyMatch(IOPredicate<? super T> predicate)
LikeStream.anyMatch(java.util.function.Predicate)
but throwsIOException
.default IOStream<T>
IOStream. filter(IOPredicate<? super T> predicate)
LikeStream.filter(java.util.function.Predicate)
.default boolean
IOStream. noneMatch(IOPredicate<? super T> predicate)
LikeStream.noneMatch(java.util.function.Predicate)
.default IOPredicate<T>
IOPredicate. or(IOPredicate<? super T> other)
Creates a composed predicate that represents a short-circuiting logical OR of this predicate and another.static <T> boolean
Uncheck. test(IOPredicate<T> predicate, T t)
Tests an IO predicate.
-