Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

ComparatorMeaningTypes handled
_LESS_THANThe first item is less than the second. numeric, alphabetic
_GREATER_THANThe first item is greater than the second. numeric, alphabetic
_EQUALSThe first item is identical to the second. numeric, alphabetic
_GREATER_THAN_OR_EQUALThe first item is identical to or greater than the second. numeric, alphabetic
_LESS_THAN_OR_EQUALThe first item is identical to or less than the second. numeric, alphabetic
_NOT_EQUALSThe first item is not identical to the second. numeric, alphabetic
_STARTS_WITHThe first item starts with the second string.alphabetic
_NOT_STARTS_WITHThe first item does not start with the second string.alphabetic
_LIKEThe first item is like the second string. alphabetic
_IS_NOT_NULLThe first item is not null compared to the second string ??numeric, alphabetic
_IS_NULLThe first item is null  to the second string ??numeric, alphabetic


Calling a method like a field condition and then within the syntax of what you are calling.

fieldCondition(attrOne,_EQUALS,attrTwo)

Clarifying info required:

...