Uses of Class
org.thymeleaf.standard.expression.Expression

Packages that use Expression
org.thymeleaf.standard.expression   
 

Uses of Expression in org.thymeleaf.standard.expression
 

Subclasses of Expression in org.thymeleaf.standard.expression
 class AdditionExpression
           
 class AdditionSubtractionExpression
           
 class AndExpression
           
 class BinaryOperationExpression
           
 class BooleanTokenExpression
           
 class ComplexExpression
           
 class ConditionalExpression
           
 class DefaultExpression
           
 class DivisionExpression
           
 class EqualsExpression
           
 class EqualsNotEqualsExpression
           
 class GenericTokenExpression
           
 class GreaterLesserExpression
           
 class GreaterOrEqualToExpression
           
 class GreaterThanExpression
           
 class LessOrEqualToExpression
           
 class LessThanExpression
           
 class LinkExpression
           
 class MessageExpression
           
 class MinusExpression
           
 class MultiplicationDivisionRemainderExpression
           
 class MultiplicationExpression
           
 class NegationExpression
           
 class NotEqualsExpression
           
 class NullTokenExpression
           
 class NumberTokenExpression
           
 class OrExpression
           
 class RemainderExpression
           
 class SelectionVariableExpression
           
 class SimpleExpression
           
 class SubtractionExpression
           
 class TextLiteralExpression
           
 class Token
           
 class VariableExpression
           
 

Methods in org.thymeleaf.standard.expression that return Expression
 Expression ConditionalExpression.getConditionExpression()
           
 Expression DefaultExpression.getDefaultExpression()
           
 Expression ConditionalExpression.getElseExpression()
           
 Expression NegationExpression.getOperand()
           
 Expression MinusExpression.getOperand()
           
 Expression DefaultExpression.getQueriedExpression()
           
 Expression ConditionalExpression.getThenExpression()
           
static Expression StandardExpressionProcessor.parseExpression(Arguments arguments, String input)
          Deprecated. the StandardExpressionProcessor class was deprecated in 2.1.0 for semantic and refactoring reasons. Should use the equivalent StandardExpressions instead if you want to obtain parser instances registered by the standard dialects, or instance your parser instances using their constructors directly if you are building your own dialect including these parserss. As for expression execution, this is no longer managed by executor objects (also deprecated) but by the expressions themselves. Will be removed in 3.0.
 Expression StandardExpressionParser.parseExpression(Arguments arguments, String input)
          Deprecated. since 2.1.0. Deprecated in favour of StandardExpressionParser.parseExpression(org.thymeleaf.Configuration, org.thymeleaf.context.IProcessingContext, String). Will be removed in 3.0.
static Expression StandardExpressionProcessor.parseExpression(Configuration configuration, IProcessingContext processingContext, String input)
          Deprecated. the StandardExpressionProcessor class was deprecated in 2.1.0 for semantic and refactoring reasons. Should use the equivalent StandardExpressions instead if you want to obtain parser instances registered by the standard dialects, or instance your parser instances using their constructors directly if you are building your own dialect including these parserss. As for expression execution, this is no longer managed by executor objects (also deprecated) but by the expressions themselves. Will be removed in 3.0.
 Expression StandardExpressionParser.parseExpression(Configuration configuration, IProcessingContext processingContext, String input)
           
 

Methods in org.thymeleaf.standard.expression with parameters of type Expression
static Object StandardExpressionProcessor.executeExpression(Arguments arguments, Expression expression)
          Deprecated. the StandardExpressionProcessor class was deprecated in 2.1.0 for semantic and refactoring reasons. Should use the equivalent StandardExpressions instead if you want to obtain parser instances registered by the standard dialects, or instance your parser instances using their constructors directly if you are building your own dialect including these parserss. As for expression execution, this is no longer managed by executor objects (also deprecated) but by the expressions themselves. Will be removed in 3.0.
 Object StandardExpressionExecutor.executeExpression(Arguments arguments, Expression expression)
          Deprecated. The StandardExpressionExecutor class has been deprecated in 2.1.0. Instead the "execute()" methods in Expression objects returned by parsers should be used directly.
static Object StandardExpressionProcessor.executeExpression(Arguments arguments, Expression expression, StandardExpressionExecutionContext expContext)
          Deprecated. the StandardExpressionProcessor class was deprecated in 2.1.0 for semantic and refactoring reasons. Should use the equivalent StandardExpressions instead if you want to obtain parser instances registered by the standard dialects, or instance your parser instances using their constructors directly if you are building your own dialect including these parserss. As for expression execution, this is no longer managed by executor objects (also deprecated) but by the expressions themselves. Will be removed in 3.0.
 Object StandardExpressionExecutor.executeExpression(Arguments arguments, Expression expression, StandardExpressionExecutionContext expContext)
          Deprecated. The StandardExpressionExecutor class has been deprecated in 2.1.0. Instead the "execute()" methods in Expression objects returned by parsers should be used directly.
static Object StandardExpressionProcessor.executeExpression(Configuration configuration, IProcessingContext processingContext, Expression expression)
          Deprecated. the StandardExpressionProcessor class was deprecated in 2.1.0 for semantic and refactoring reasons. Should use the equivalent StandardExpressions instead if you want to obtain parser instances registered by the standard dialects, or instance your parser instances using their constructors directly if you are building your own dialect including these parserss. As for expression execution, this is no longer managed by executor objects (also deprecated) but by the expressions themselves. Will be removed in 3.0.
 Object StandardExpressionExecutor.executeExpression(Configuration configuration, IProcessingContext processingContext, Expression expression)
          Deprecated. The StandardExpressionExecutor class has been deprecated in 2.1.0. Instead the "execute()" methods in Expression objects returned by parsers should be used directly.
static Object StandardExpressionProcessor.executeExpression(Configuration configuration, IProcessingContext processingContext, Expression expression, StandardExpressionExecutionContext expContext)
          Deprecated. the StandardExpressionProcessor class was deprecated in 2.1.0 for semantic and refactoring reasons. Should use the equivalent StandardExpressions instead if you want to obtain parser instances registered by the standard dialects, or instance your parser instances using their constructors directly if you are building your own dialect including these parserss. As for expression execution, this is no longer managed by executor objects (also deprecated) but by the expressions themselves. Will be removed in 3.0.
 Object StandardExpressionExecutor.executeExpression(Configuration configuration, IProcessingContext processingContext, Expression expression, StandardExpressionExecutionContext expContext)
          Deprecated. The StandardExpressionExecutor class has been deprecated in 2.1.0. Instead the "execute()" methods in Expression objects returned by parsers should be used directly.
 

Constructors in org.thymeleaf.standard.expression with parameters of type Expression
ConditionalExpression(Expression conditionExpression, Expression thenExpression, Expression elseExpression)
           
DefaultExpression(Expression queriedExpression, Expression defaultExpression)
           
MinusExpression(Expression operand)
           
NegationExpression(Expression operand)
           
 



Copyright © 2014 The THYMELEAF team. All Rights Reserved.