Package com.ocs.dynamo.filter
Class And
- java.lang.Object
-
- com.ocs.dynamo.filter.AbstractFilter
-
- com.ocs.dynamo.filter.AbstractJunctionFilter
-
- com.ocs.dynamo.filter.And
-
- All Implemented Interfaces:
Filter
public final class And extends AbstractJunctionFilter
A composite filter that evaluates to true if all of the subfilters match- Author:
- bas.rutten
-
-
Constructor Summary
Constructors Constructor Description And(Filter... filters)And(Collection<Filter> filters)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanevaluate(Object that)-
Methods inherited from class com.ocs.dynamo.filter.AbstractJunctionFilter
equals, getFilters, hashCode, remove, replace, toString
-
Methods inherited from class com.ocs.dynamo.filter.AbstractFilter
and, and, and, applyFilter, between, getProperty, greater, greaterOrEqual, isEqual, isNull, less, lessOrEqual, like, like, likeIgnoreCase, not, or, or, or
-
-
-
-
Constructor Detail
-
And
public And(Filter... filters)
- Parameters:
filters- filters of which the And filter will be composed
-
And
public And(Collection<Filter> filters)
- Parameters:
filters- filters of which the And filter will be composed
-
-
Method Detail
-
evaluate
public boolean evaluate(Object that)
-
-