Package org.geotools.filter.capability
Class TemporalOperatorImpl
- Object
-
- TemporalOperatorImpl
-
- All Implemented Interfaces:
Operator
,TemporalOperator
public class TemporalOperatorImpl extends Object implements TemporalOperator
-
-
Constructor Summary
Constructors Constructor Description TemporalOperatorImpl(String name)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
Equals should be implemented simply in terms of getName()String
getName()
Name of supported Operator.Collection<Name>
getTemporalOperands()
The operands accepted by this temporal operator.int
hashCode()
HashCode should be implemented simply in terms of getName().
-
-
-
Constructor Detail
-
TemporalOperatorImpl
public TemporalOperatorImpl(String name)
-
-
Method Detail
-
getName
public String getName()
Description copied from interface:Operator
Name of supported Operator.Each filter subclass has an associated name (such as BBOX or EqualsTo), you can use this name to determine if a matching Operator is defined as part of FilterCapabilities.
-
getTemporalOperands
public Collection<Name> getTemporalOperands()
Description copied from interface:TemporalOperator
The operands accepted by this temporal operator.- Specified by:
getTemporalOperands
in interfaceTemporalOperator
-
hashCode
public int hashCode()
Description copied from interface:Operator
HashCode should be implemented simply in terms of getName().
-
-