[Table of Contents] [docx version]

Error! No text of specified style in document.

ST_FunctionOperator (Function Operator)

This simple type defines the condition expression functions which can be used to perform operations.

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

equ (Equal)

Equal function operator.

gt (Greater Than)

Specifies the grater than function operator.

gte (Greater Than or Equal to)

Specifies the greater than or equal to function operator.

lt (Less Than)

Specifies the less than function operator.

lte (Less Than or Equal to)

Specifies the less than or equal to function operator.

neq (Not Equal To)

Specifies the not equal to function operator.

 

Referenced By

if@op5.9.2.15)

The following XML Schema fragment defines the contents of this simple type:

<simpleType name="ST_FunctionOperator" final="restriction">

   <restriction base="xsd:token">

   <enumeration value="equ"/>

   <enumeration value="neq"/>

   <enumeration value="gt"/>

   <enumeration value="lt"/>

   <enumeration value="gte"/>

   <enumeration value="lte"/>

   </restriction>

</simpleType>