| Constructor and Description |
|---|
AnyOf(java.lang.Iterable<? extends Predicate<? super T>> delegates) |
AnyOf(Predicate<? super T>... delegates) |
AnyOf(T... delegates) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
satisfiedBy(T testedInstance)
Returns whether the given instance satisfies this predicate.
|
@SafeVarargs public AnyOf(T... delegates)
public boolean satisfiedBy(T testedInstance)
PredicatesatisfiedBy in interface Predicate<T>testedInstance - The instance to test.