Class MultiplicationDivisionRemainderExpression
- Object
-
- org.thymeleaf.standard.expression.Expression
-
- org.thymeleaf.standard.expression.ComplexExpression
-
- org.thymeleaf.standard.expression.BinaryOperationExpression
-
- org.thymeleaf.standard.expression.MultiplicationDivisionRemainderExpression
-
- All Implemented Interfaces:
Serializable
,IStandardExpression
- Direct Known Subclasses:
DivisionExpression
,MultiplicationExpression
,RemainderExpression
public abstract class MultiplicationDivisionRemainderExpression extends BinaryOperationExpression
- Since:
- 1.1
- Author:
- Daniel Fernández
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected static String
DIVISION_OPERATOR
protected static String
DIVISION_OPERATOR_2
protected static String
MULTIPLICATION_OPERATOR
protected static String
REMAINDER_OPERATOR
protected static String
REMAINDER_OPERATOR_2
-
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
MultiplicationDivisionRemainderExpression(IStandardExpression left, IStandardExpression right)
-
Method Summary
-
Methods inherited from class org.thymeleaf.standard.expression.BinaryOperationExpression
composeBinaryOperationExpression, getLeft, getRight, getStringRepresentation
-
Methods inherited from class org.thymeleaf.standard.expression.Expression
execute, execute, getStringRepresentation, toString
-
-
-
-
Field Detail
-
MULTIPLICATION_OPERATOR
protected static final String MULTIPLICATION_OPERATOR
- See Also:
- Constant Field Values
-
DIVISION_OPERATOR
protected static final String DIVISION_OPERATOR
- See Also:
- Constant Field Values
-
DIVISION_OPERATOR_2
protected static final String DIVISION_OPERATOR_2
- See Also:
- Constant Field Values
-
REMAINDER_OPERATOR
protected static final String REMAINDER_OPERATOR
- See Also:
- Constant Field Values
-
REMAINDER_OPERATOR_2
protected static final String REMAINDER_OPERATOR_2
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
MultiplicationDivisionRemainderExpression
protected MultiplicationDivisionRemainderExpression(IStandardExpression left, IStandardExpression right)
-
-