<ST_FilterOperator>
(Filter Operator)
Operator enumerations for filtering.
This simple type's contents are a restriction of the XML Schema string datatype.
The following are possible enumeration values for this type:
Enumeration Value |
Description |
---|---|
|
Show results which are equal to criteria. |
|
Show results which are greater than criteria. |
|
Show results which are greater than or equal to criteria. |
|
Show results which are less than criteria. |
|
Show results which are less than or equal to criteria. |
|
Show results which are not equal to criteria. |
Referenced By |
---|
|
The following XML Schema fragment defines the contents of this simple type:
<simpleType name="ST_FilterOperator">
<restriction base="xsd:string">
<enumeration value="equal"/>
<enumeration value="lessThan"/>
<enumeration value="lessThanOrEqual"/>
<enumeration value="notEqual"/>
<enumeration value="greaterThanOrEqual"/>
<enumeration value="greaterThan"/>
</restriction>
</simpleType>