module CriteriaOperator::UnaryOperatorType
Enum representing all possible types for a {UnaryOperator}.
Constants
- IS_NULL
with this type, a {UnaryOperator} will check for if the operand equals null/nil
- MINUS
with this type, a {UnaryOperator} will prepend a numerical negative sign to the operand
- NOT
with this type, a {UnaryOperator} will inverse the logical value of the operand
- PLUS
with this type, a {UnaryOperator} will prepend a numerical positive sign to the operand