Modifier and Type | Method and Description |
---|---|
default IOBiPredicate<T,U> |
IOBiPredicate.and(IOBiPredicate<? super T,? super U> other)
Returns a composed predicate that represents a short-circuiting logical AND of this predicate and another.
|
static <T,U> IOBiPredicate<T,U> |
IOBiPredicate.checked(BiPredicate<? super T,? super U> predicate)
Returns a predicate that evaluates the
predicate predicate, and unwraps any UncheckedIOException that is thrown by
throwing its cause . |
default IOBiPredicate<T,U> |
IOBiPredicate.negate()
Returns a predicate that represents the logical negation of this predicate.
|
default IOBiPredicate<T,U> |
IOBiPredicate.or(IOBiPredicate<? super T,? super U> other)
Returns a composed predicate that represents a short-circuiting logical OR of this predicate and another.
|
Modifier and Type | Method and Description |
---|---|
default IOBiPredicate<T,U> |
IOBiPredicate.and(IOBiPredicate<? super T,? super U> other)
Returns a composed predicate that represents a short-circuiting logical AND of this predicate and another.
|
default IOBiPredicate<T,U> |
IOBiPredicate.or(IOBiPredicate<? super T,? super U> other)
Returns a composed predicate that represents a short-circuiting logical OR of this predicate and another.
|
static <T,U> BiPredicate<T,U> |
IOBiPredicate.unchecked(IOBiPredicate<? super T,? super U> 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.