Class NotEqualsExpression
- Object
-
- org.thymeleaf.standard.expression.Expression
-
- org.thymeleaf.standard.expression.ComplexExpression
-
- org.thymeleaf.standard.expression.BinaryOperationExpression
-
- org.thymeleaf.standard.expression.EqualsNotEqualsExpression
-
- org.thymeleaf.standard.expression.NotEqualsExpression
-
- All Implemented Interfaces:
Serializable
,IStandardExpression
public final class NotEqualsExpression extends EqualsNotEqualsExpression
Not-equals complex expression (Thymeleaf Standard Expressions)
Note a class with this name existed since 1.1, but it was completely reimplemented in Thymeleaf 3.0
- Since:
- 3.0.0
- Author:
- Daniel Fernández
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class org.thymeleaf.standard.expression.EqualsNotEqualsExpression
EQUALS_OPERATOR, EQUALS_OPERATOR_2, NOT_EQUALS_OPERATOR, NOT_EQUALS_OPERATOR_2, NOT_EQUALS_OPERATOR_3
-
Fields inherited from class org.thymeleaf.standard.expression.Expression
NESTING_END_CHAR, NESTING_START_CHAR, PARSING_PLACEHOLDER_CHAR
-
-
Constructor Summary
Constructors Constructor Description NotEqualsExpression(IStandardExpression left, IStandardExpression right)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getStringRepresentation()
Obtain a string representation of the expression.-
Methods inherited from class org.thymeleaf.standard.expression.EqualsNotEqualsExpression
composeEqualsNotEqualsExpression
-
Methods inherited from class org.thymeleaf.standard.expression.BinaryOperationExpression
composeBinaryOperationExpression, getLeft, getRight, getStringRepresentation
-
Methods inherited from class org.thymeleaf.standard.expression.Expression
execute, execute, toString
-
-
-
-
Constructor Detail
-
NotEqualsExpression
public NotEqualsExpression(IStandardExpression left, IStandardExpression right)
-
-
Method Detail
-
getStringRepresentation
public String getStringRepresentation()
Description copied from interface:IStandardExpression
Obtain a string representation of the expression.
- Specified by:
getStringRepresentation
in interfaceIStandardExpression
- Specified by:
getStringRepresentation
in classExpression
- Returns:
- the String representation
-
-