ComparisonTask
Fields
Name | Type | Description |
---|---|---|
lhs | OracleJob where the executed result is equal to the left hand side operand. | |
lhsValue | string | String or |
onFailure | The OracleJob to execute if the condition fails to evaluate. | |
onFailureValue | string | The result to use if the condition fails to evaluate. Can be set to a |
onFalse | The OracleJob to execute if the condition evaluates to false. | |
onFalseValue | string | The result to use if the condition evaluates to false. Can be set to a |
onTrue | The OracleJob to execute if the condition evaluates to true. | |
onTrueValue | string | The result to use if the condition evaluates to true. Can be set to a |
op | The type of operator to use on the left (lhs) and right (rhs) operand. | |
rhs | OracleJob where the executed result is equal to the right hand side operand. | |
rhsValue | string | String or |
Enums
Operation
Value | Name | Description |
---|---|---|
0 | OPERATION_EQ | Use the equals to ‘==’ operator. |
1 | OPERATION_GT | Use the greater than ‘>’ operator. |
2 | OPERATION_LT | Use the less than ‘<’ operator. |