Uses of Class
org.springframework.expression.spel.ast.Operator

Packages that use Operator
Package
Description
SpEL's abstract syntax tree.
  • Uses of Operator in org.springframework.expression.spel.ast

    Modifier and Type
    Class
    Description
    class 
    Represents the boolean AND operation.
    class 
    Decrement operator.
    class 
    Implements division operator.
    class 
    Implements the equality operator.
    class 
    Represents the between operator.
    class 
    The operator 'instanceof' checks if an object is of the class specified in the right-hand operand, in the same way that instanceof does in Java.
    class 
    Implements the matches operator.
    class 
    The power operator.
    class 
    Implements greater-than-or-equal operator.
    class 
    Implements the greater-than operator.
    class 
    Increment operator.
    class 
    Implements the less-than-or-equal operator.
    class 
    Implements the less-than operator.
    class 
    The minus operator supports: subtraction of numbers subtraction of an int from a string of one character (effectively decreasing that character), so 'd' - 3 = 'a'
    class 
    Implements the modulus operator.
    class 
    Implements the multiply operator.
    class 
    Implements the not-equal operator.
    class 
    Represents the boolean OR operation.
    class 
    The plus operator will: add numbers concatenate strings