public interface AsyncPredicate<T>
| Modifier and Type | Method and Description |
|---|---|
static <T> AsyncPredicate<T> |
alwaysFalse() |
static <T> AsyncPredicate<T> |
alwaysTrue() |
default AsyncPredicate<T> |
and(AsyncPredicate<? super T> other) |
default AsyncPredicate<T> |
and(Predicate<? super T> other) |
default AsyncPredicate<T> |
negate() |
static <T> AsyncPredicate<T> |
of(Predicate<T> predicate) |
default AsyncPredicate<T> |
or(AsyncPredicate<? super T> other) |
default AsyncPredicate<T> |
or(Predicate<? super T> other) |
Stage<Boolean> |
test(T t) |
default AsyncPredicate<T> negate()
default AsyncPredicate<T> and(AsyncPredicate<? super T> other)
default AsyncPredicate<T> and(Predicate<? super T> other)
default AsyncPredicate<T> or(Predicate<? super T> other)
default AsyncPredicate<T> or(AsyncPredicate<? super T> other)
static <T> AsyncPredicate<T> of(Predicate<T> predicate)
static <T> AsyncPredicate<T> alwaysTrue()
static <T> AsyncPredicate<T> alwaysFalse()
Copyright © 2019. All rights reserved.