| AllOf<T> |
A Predicate which is satisfied if all of a given number of predicates are satisfied.
|
| AnyOf<T> |
A Predicate which is satisfied if any of a given number of predicates are satisfied.
|
| Anything<T> |
|
| DelegatingPredicate<T> |
|
| Equals<T> |
A trivial Predicate which delegates to Object.equals(Object) and matches if it returns true.
|
| Having<Original,Derived> |
A Predicate which delegates the test to another Predicate testing a value derived from the original testee.
|
| In<T extends java.lang.Comparable<T>> |
A Predicate which is satisfied by Comparable elements within a specific closed interval.
|
| LeftWith<Left> |
|
| NoneOf<T> |
A Predicate which matches if none of another sequence of predicates matches.
|
| Not<T> |
|
| Nothing<T> |
|
| PairWith<Left,Right> |
|
| RightWith<Right> |
|
| SameAs<T> |
A trivial Predicate which compares the instances of two objects and matches if they are the same.
|
| SingleWith<V> |
|