Class BinaryOperationExpression
- Object
-
- org.thymeleaf.standard.expression.Expression
-
- org.thymeleaf.standard.expression.ComplexExpression
-
- org.thymeleaf.standard.expression.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:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class org.thymeleaf.standard.expression.Expression
NESTING_END_CHAR, NESTING_START_CHAR, PARSING_PLACEHOLDER_CHAR
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
BinaryOperationExpression(IStandardExpression left, IStandardExpression right)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description 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)
IStandardExpression
getLeft()
IStandardExpression
getRight()
protected String
getStringRepresentation(String operator)
-
Methods inherited from class org.thymeleaf.standard.expression.Expression
execute, execute, getStringRepresentation, toString
-
-
-
-
Constructor Detail
-
BinaryOperationExpression
protected BinaryOperationExpression(IStandardExpression left, IStandardExpression right)
-
-
Method Detail
-
getLeft
public IStandardExpression getLeft()
-
getRight
public IStandardExpression getRight()
-
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)
-
-