Function1
s for logical filtering.See: Description
Class | Description |
---|---|
AndChecker<T> |
A value checker which returns
true when all wrapped
checkers return true . |
Check |
Helper methods for using
Predicate s as checkers,,
useful for combination of checkers. |
EqualsChecker<T> |
This filter uses the equals method to check for equalitiy,
and returns
true for equals objects. |
GreaterEqualsChecker<T> |
This value checker compares the checked value to its element,
and returns
true if the given value is greater
or same. |
GreaterThanChecker<T> |
This value checker compares the checked value to its element,
and returns
true if the given value is greater. |
LessEqualsChecker<T> |
This value checker compares the checked value to its element,
and returns
true if the given value is smaller
or same. |
LessThanChecker<T> |
This value checker compares the checked value to its element,
and returns
true if the given value is smaller. |
NegateCheckerWrapper<T> |
A wrapper for a checker which negates the results.
|
NotEqualsChecker<T> |
This filter uses the equals method to check for equalitiy,
and returns
true for not equal objects. |
OrChecker<T> |
A value checker which returns
true when any of the wrapped
checkers returns true . |
This package contains predefined Function1
s for logical filtering.