public interface IStandardExpression
Common interface for all Thymeleaf Standard Expression objects.
Objects implementing this inteface are obtained by calling the parsing methods in
parser objects (implementations of IStandardExpressionParser
).
Default implementation (used by most of the Thymeleaf core): Expression
.
Modifier and Type | Method and Description |
---|---|
Object |
execute(Configuration configuration,
IProcessingContext processingContext)
Execute the expression.
|
Object |
execute(Configuration configuration,
IProcessingContext processingContext,
StandardExpressionExecutionContext expContext)
Execute the expression.
|
String |
getStringRepresentation()
Obtain a string representation of the expression.
|
String getStringRepresentation()
Obtain a string representation of the expression.
Object execute(Configuration configuration, IProcessingContext processingContext)
Execute the expression.
configuration
- the Configuration object for the template execution environment.processingContext
- the processing context object containing the variables to be applied to the expression.Object execute(Configuration configuration, IProcessingContext processingContext, StandardExpressionExecutionContext expContext)
Execute the expression.
configuration
- the Configuration object for the template execution environment.processingContext
- the processing context object containing the variables to be applied to the expression.expContext
- the expression execution context to be applied (preprocessing, etc.)Copyright © 2016 The THYMELEAF team. All rights reserved.