Interface IOperator

  • All Superinterfaces:
    ISymbol, Serializable

    public interface IOperator
    extends ISymbol
    Details of an operator used in an infix expression.
    Since:
    7.0.0
    Author:
    XIMA MEDIA GmbH
    • Method Detail

      • getAssociativity

        EAssociativity getAssociativity()
        Returns:
        The EAssociativity of this operator, i.e. whether it is left or right associative.
      • getPrecedence

        int getPrecedence()
        Returns:
        The precedence of this operator. Operators with a higher precedence take precedence before operators with a lower precedence.
      • getType

        EOperatorType getType()
        Returns:
        The type of this operator, whether it can be used as a prefix, infix, or postfix operator.