Modifier and Type | Method and Description |
---|---|
default IOPredicate<T> |
IOPredicate.and(IOPredicate<? super T> other)
Returns a composed predicate that represents a short-circuiting logical AND of this predicate and another.
|
static <T> IOPredicate<T> |
IOPredicate.checked(Predicate<? super T> predicate)
Returns a predicate that evaluates the
predicate predicate, and unwraps any UncheckedIOException that is thrown by
throwing its cause . |
static <T> IOPredicate<T> |
IOPredicate.isEqual(Object targetRef)
Returns a predicate that tests if two arguments are equal according to
Objects.equals(Object, Object) . |
default IOPredicate<T> |
IOPredicate.negate()
Returns a predicate that represents the logical negation of this predicate.
|
static <T> IOPredicate<T> |
IOPredicate.not(IOPredicate<? super T> target)
Returns a predicate that represents the logical negation of another predicate.
|
default IOPredicate<T> |
IOPredicate.or(IOPredicate<? super T> other)
Returns a composed predicate that represents a short-circuiting logical OR of this predicate and another.
|
Modifier and Type | Method and Description |
---|---|
default IOPredicate<T> |
IOPredicate.and(IOPredicate<? super T> other)
Returns a composed predicate that represents a short-circuiting logical AND of this predicate and another.
|
static <T> IOPredicate<T> |
IOPredicate.not(IOPredicate<? super T> target)
Returns a predicate that represents the logical negation of another predicate.
|
default IOPredicate<T> |
IOPredicate.or(IOPredicate<? super T> other)
Returns a composed predicate that represents a short-circuiting logical OR of this predicate and another.
|
static <T> Predicate<T> |
IOPredicate.unchecked(IOPredicate<? super T> predicate)
Returns a predicate that evaluates the
predicate predicate, and wraps any IOException that is thrown in an
UncheckedIOException . |
Copyright © 2017–2020. All rights reserved.