Class BinaryOperationExpression

All Implemented Interfaces:
Serializable, IStandardExpression
Direct Known Subclasses:
AdditionSubtractionExpression, AndExpression, EqualsNotEqualsExpression, GreaterLesserExpression, MultiplicationDivisionRemainderExpression, OrExpression

public abstract class BinaryOperationExpression extends ComplexExpression
Since:
1.1
Author:
Daniel Fernández
See Also:
  • Constructor Details

  • Method Details

    • getLeft

      public IStandardExpression getLeft()
    • getRight

      public IStandardExpression getRight()
    • getStringRepresentation

      protected String getStringRepresentation(String operator)
    • composeBinaryOperationExpression

      protected static org.thymeleaf.standard.expression.ExpressionParsingState composeBinaryOperationExpression(org.thymeleaf.standard.expression.ExpressionParsingState state, int nodeIndex, String[] operators, boolean[] leniencies, Class<? extends BinaryOperationExpression>[] operationClasses, Method leftAllowedMethod, Method rightAllowedMethod)