Package org.geotools.api.filter
Class ExcludeFilter
- Object
-
- ExcludeFilter
-
- All Implemented Interfaces:
Serializable
,Filter
public final class ExcludeFilter extends Object implements Filter, Serializable
Indicating "filter all", evaluates tofalse
. This is a placeholder filter intended to be used in data structuring definition.- EXCLUDE or Filter ==> Filter
- EXCLUDE and Filter ==> EXCLUDE
- EXCLUDE ==> INCLUDE
The above does imply that the AND opperator can short circuit on encountering ALL.
- Author:
- Jody Garnett (Refractions Research, Inc.), Martin Desruisseaux (Geomatys)
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Object
accept(FilterVisitor visitor, Object extraData)
Accepts a visitor.boolean
evaluate(Object object)
Returnsfalse
, content is excluded.String
toString()
Returns a string representation of this filter.
-
-
-
Method Detail
-
accept
public Object accept(FilterVisitor visitor, Object extraData)
Accepts a visitor.
-
evaluate
public boolean evaluate(Object object)
Returnsfalse
, content is excluded.
-
-