Variable ConditionTask_ConditionTaskOperatorConst
ConditionTask_ConditionTaskOperator: {
EQUAL_TO: "EQUAL_TO";
GREATER_THAN: "GREATER_THAN";
GREATER_THAN_OR_EQUAL: "GREATER_THAN_OR_EQUAL";
LESS_THAN: "LESS_THAN";
LESS_THAN_OR_EQUAL: "LESS_THAN_OR_EQUAL";
NOT_EQUAL: "NOT_EQUAL";
} = ...
Type Declaration
ReadonlyEQUAL_TO: "EQUAL_TO"
ReadonlyGREATER_THAN: "GREATER_THAN"
ReadonlyGREATER_THAN_OR_EQUAL: "GREATER_THAN_OR_EQUAL"
ReadonlyLESS_THAN: "LESS_THAN"
ReadonlyLESS_THAN_OR_EQUAL: "LESS_THAN_OR_EQUAL"
ReadonlyNOT_EQUAL: "NOT_EQUAL"
EQUAL_TO,NOT_EQUALoperators perform string comparison of their operands. This means that“12.0” == “12”will evaluate tofalse.GREATER_THAN,GREATER_THAN_OR_EQUAL,LESS_THAN,LESS_THAN_OR_EQUALoperators perform numeric comparison of their operands.“12.0” >= “12”will evaluate totrue,“10.0” >= “12”will evaluate tofalse.The boolean comparison to task values can be implemented with operators
EQUAL_TO,NOT_EQUAL. If a task value was set to a boolean value, it will be serialized to“true”or“false”for the comparison.