| Interface | Description |
|---|---|
| EPredicate<T> |
EPredicate defines a consistent pattern for conditional processing. |
| Class | Description |
|---|---|
| AllOfPredicate<T> | |
| AnyOfPredicate<T> |
An
EPredicate which will pass any input which is considered equal to
one of the specified objects, using the Object.equals(Object) implementation. |
| ConstantPredicate<T> |
An
EPredicate that always returns a specified value, true or false. |
| EqualsPredicate<T> |
An
EPredicate which will pass any input which is considered equal to
the specified object, using the Object.equals(Object) implementation. |
| EqualsPredicate.Transformer | |
| NotPredicate<T> | |
| NullPredicate<T> |
Passes any input which is null.
|
| PredicateBuilder<T> |
PredicateBuilder allows the creation of a predicate for a specified type. |
Copyright © 2013 Atomic Leopard. All Rights Reserved.