<ST_BoolOperator>
(Boolean Constraint)
This simple type specified Boolean operations which can be applied to compare constraints.
This simple type's contents are a restriction of the XML Schema token datatype.
The following are possible enumeration values for this type:
Enumeration Value |
Description |
---|---|
|
Equal operator. |
|
Specifies the greater than or equal to Boolean operator. |
|
Specifies the less than or equal to Boolean operator. |
|
Specifies a none Boolean operator |
Referenced By |
---|
|
The following XML Schema fragment defines the contents of this simple type:
<simpleType name="ST_BoolOperator" final="restriction">
<restriction base="xsd:token">
<enumeration value="none"/>
<enumeration value="equ"/>
<enumeration value="gte"/>
<enumeration value="lte"/>
</restriction>
</simpleType>