Package com.luciad.ogc.filter.model
Class TLcdOGCIsNullOperator
java.lang.Object
com.luciad.datamodel.TLcdDataObject
com.luciad.ogc.filter.model.TLcdOGCIsNullOperator
- All Implemented Interfaces:
ILcdDataObject
,ILcdGenericExpression
,ILcdOGCCondition
,ILcdCloneable
,ILcdDeepCloneable
,Cloneable
This class represents the
<ogc:PropertyIsNull>
element.
According to the OGC Filter specification, this operator that checks to see if the value of its content is NULL
.
A NULL
is equivalent to no value present.
The value 0 is a valid value and is not considered NULL
.
A TLcdOGCIsNullOperator
instance is composed of an instance of TLcdOGCPropertyName
that represents the property of which the value must be checked.- See Also:
-
Constructor Summary
ConstructorDescriptionDefault constructor.TLcdOGCIsNullOperator
(TLcdOGCPropertyName aPropertyName) Constructs an instance for the property of which the value must be checked. -
Method Summary
Modifier and TypeMethodDescriptionboolean
Gets the property of which the value must be checked.int
hashCode()
void
setPropertyName
(TLcdOGCPropertyName aPropertyName) Sets the property of which the value must be checked.toString()
Methods inherited from class com.luciad.datamodel.TLcdDataObject
clone, clone, getDataType, getValue, getValue, hasValue, hasValue, setValue, setValue
-
Constructor Details
-
TLcdOGCIsNullOperator
public TLcdOGCIsNullOperator()Default constructor. -
TLcdOGCIsNullOperator
Constructs an instance for the property of which the value must be checked.- Parameters:
aPropertyName
- the property of which the value must be checked.
-
-
Method Details
-
getPropertyName
Gets the property of which the value must be checked.- Returns:
- the property of which the value must be checked.
-
setPropertyName
Sets the property of which the value must be checked.- Parameters:
aPropertyName
- the property of which the value must be checked.
-
toString
- Overrides:
toString
in classTLcdDataObject
-
equals
-
hashCode
public int hashCode()
-