Class MultiplicationDivisionRemainderExpression
- java.lang.Object
-
- org.thymeleaf.standard.expression.Expression
-
- org.thymeleaf.standard.expression.ComplexExpression
-
- org.thymeleaf.standard.expression.BinaryOperationExpression
-
- org.thymeleaf.standard.expression.MultiplicationDivisionRemainderExpression
-
- All Implemented Interfaces:
java.io.Serializable,IStandardExpression
- Direct Known Subclasses:
DivisionExpression,MultiplicationExpression,RemainderExpression
public abstract class MultiplicationDivisionRemainderExpression extends BinaryOperationExpression
- Since:
- 1.1
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected static java.lang.StringDIVISION_OPERATORprotected static java.lang.StringDIVISION_OPERATOR_2private static java.lang.reflect.MethodLEFT_ALLOWED_METHODprivate static boolean[]LENIENCIESprotected static java.lang.StringMULTIPLICATION_OPERATORprivate static java.lang.Class<? extends BinaryOperationExpression>[]OPERATOR_CLASSES(package private) static java.lang.String[]OPERATORSprotected static java.lang.StringREMAINDER_OPERATORprotected static java.lang.StringREMAINDER_OPERATOR_2private static java.lang.reflect.MethodRIGHT_ALLOWED_METHODprivate static longserialVersionUID-
Fields inherited from class org.thymeleaf.standard.expression.Expression
NESTING_END_CHAR, NESTING_START_CHAR, PARSING_PLACEHOLDER_CHAR
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedMultiplicationDivisionRemainderExpression(IStandardExpression left, IStandardExpression right)
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description (package private) static ExpressionParsingStatecomposeMultiplicationDivisionRemainderExpression(ExpressionParsingState state, int nodeIndex)(package private) static booleanisLeftAllowed(IStandardExpression left)(package private) static booleanisRightAllowed(IStandardExpression right)-
Methods inherited from class org.thymeleaf.standard.expression.BinaryOperationExpression
composeBinaryOperationExpression, getLeft, getRight, getStringRepresentation
-
Methods inherited from class org.thymeleaf.standard.expression.ComplexExpression
executeComplex
-
Methods inherited from class org.thymeleaf.standard.expression.Expression
execute, execute, execute, getStringRepresentation, parse, toString
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
MULTIPLICATION_OPERATOR
protected static final java.lang.String MULTIPLICATION_OPERATOR
- See Also:
- Constant Field Values
-
DIVISION_OPERATOR
protected static final java.lang.String DIVISION_OPERATOR
- See Also:
- Constant Field Values
-
DIVISION_OPERATOR_2
protected static final java.lang.String DIVISION_OPERATOR_2
- See Also:
- Constant Field Values
-
REMAINDER_OPERATOR
protected static final java.lang.String REMAINDER_OPERATOR
- See Also:
- Constant Field Values
-
REMAINDER_OPERATOR_2
protected static final java.lang.String REMAINDER_OPERATOR_2
- See Also:
- Constant Field Values
-
OPERATORS
static final java.lang.String[] OPERATORS
-
LENIENCIES
private static final boolean[] LENIENCIES
-
OPERATOR_CLASSES
private static final java.lang.Class<? extends BinaryOperationExpression>[] OPERATOR_CLASSES
-
LEFT_ALLOWED_METHOD
private static final java.lang.reflect.Method LEFT_ALLOWED_METHOD
-
RIGHT_ALLOWED_METHOD
private static final java.lang.reflect.Method RIGHT_ALLOWED_METHOD
-
-
Constructor Detail
-
MultiplicationDivisionRemainderExpression
protected MultiplicationDivisionRemainderExpression(IStandardExpression left, IStandardExpression right)
-
-
Method Detail
-
isRightAllowed
static boolean isRightAllowed(IStandardExpression right)
-
isLeftAllowed
static boolean isLeftAllowed(IStandardExpression left)
-
composeMultiplicationDivisionRemainderExpression
static ExpressionParsingState composeMultiplicationDivisionRemainderExpression(ExpressionParsingState state, int nodeIndex)
-
-