module CriteriaOperator::BinaryOperatorType

Enum representing all possible types for a {BinaryOperator}.

Constants

EQUAL

with this type, a {BinaryOperator} will check for equality of both operands

GREATER

with this type, a {BinaryOperator} will check if the left operand is greater than the right operand

GREATER_OR_EQUAL

with this type, a {BinaryOperator} will check if the left operand is greater than or equal to the right operand

LESS

with this type, a {BinaryOperator} will check if the left operand is less than the right operand

LESS_OR_EQUAL

with this type, a {BinaryOperator} will check if the left operand is less than or equal to the right operand

NOT_EQUAL

with this type, a {BinaryOperator} will check for no equality of both operands