Uses of Class
org.thymeleaf.Configuration

Packages that use Configuration
org.thymeleaf   
org.thymeleaf.dom   
org.thymeleaf.expression   
org.thymeleaf.fragment   
org.thymeleaf.standard.expression   
org.thymeleaf.standard.fragment   
org.thymeleaf.templateparser   
org.thymeleaf.templateparser.html   
org.thymeleaf.templateparser.xmldom   
org.thymeleaf.templateparser.xmlsax   
org.thymeleaf.util   
 

Uses of Configuration in org.thymeleaf
 

Methods in org.thymeleaf that return Configuration
 Configuration TemplateEngine.getConfiguration()
           Returns the configuration object.
 Configuration Arguments.getConfiguration()
           Returns the Template Engine configuration being used for processing templates.
 Configuration TemplateProcessingParameters.getConfiguration()
           Returns the Template Engine configuration being used for processing templates.
 

Constructors in org.thymeleaf with parameters of type Configuration
TemplateProcessingParameters(Configuration configuration, String templateName, IContext context)
           Create a new TemplateProcessingParameters instance.
TemplateProcessingParameters(Configuration configuration, String templateName, IProcessingContext context)
           Create a new TemplateProcessingParameters instance.
TemplateRepository(Configuration configuration)
           This constructor should only be called directly for
 

Uses of Configuration in org.thymeleaf.dom
 

Methods in org.thymeleaf.dom with parameters of type Configuration
 void Document.precompute(Configuration configuration)
           
 void DocType.process(Configuration configuration)
           Process this DOCTYPE, including any applicable translations.
 

Uses of Configuration in org.thymeleaf.expression
 

Constructors in org.thymeleaf.expression with parameters of type Configuration
Conversions(Configuration configuration, IProcessingContext processingContext)
           
 

Uses of Configuration in org.thymeleaf.fragment
 

Methods in org.thymeleaf.fragment with parameters of type Configuration
 List<Node> IFragmentSpec.extractFragment(Configuration configuration, List<Node> nodes)
           Executes the fragment specification against a list of nodes representing a DOM tree (or a set of trees), returning the extracted nodes.
 List<Node> WholeFragmentSpec.extractFragment(Configuration configuration, List<Node> nodes)
           
 List<Node> DOMSelectorFragmentSpec.extractFragment(Configuration configuration, List<Node> nodes)
           
 List<Node> ChainedFragmentSpec.extractFragment(Configuration configuration, List<Node> nodes)
           
 List<Node> ElementAndAttributeNameFragmentSpec.extractFragment(Configuration configuration, List<Node> nodes)
           
 

Uses of Configuration in org.thymeleaf.standard.expression
 

Methods in org.thymeleaf.standard.expression with parameters of type Configuration
<T> T
IStandardConversionService.convert(Configuration configuration, IProcessingContext processingContext, Object object, Class<T> targetClass)
           Convert a value to the specified target class, if possible.
<T> T
AbstractStandardConversionService.convert(Configuration configuration, IProcessingContext processingContext, Object object, Class<T> targetClass)
           
protected
<T> T
AbstractStandardConversionService.convertOther(Configuration configuration, IProcessingContext processingContext, Object object, Class<T> targetClass)
           
protected  String AbstractStandardConversionService.convertToString(Configuration configuration, IProcessingContext processingContext, Object object)
           
 Object IStandardVariableExpressionEvaluator.evaluate(Configuration configuration, IProcessingContext processingContext, String expression, StandardExpressionExecutionContext expContext, boolean useSelectionAsRoot)
           Evaluate the variable expression.
 Object OgnlVariableExpressionEvaluator.evaluate(Configuration configuration, IProcessingContext processingContext, String expression, StandardExpressionExecutionContext expContext, boolean useSelectionAsRoot)
           
 Object Expression.execute(Configuration configuration, IProcessingContext processingContext)
           
 Object IStandardExpression.execute(Configuration configuration, IProcessingContext processingContext)
           Execute the expression.
 Object Expression.execute(Configuration configuration, IProcessingContext processingContext, StandardExpressionExecutionContext expContext)
           
 Object IStandardExpression.execute(Configuration configuration, IProcessingContext processingContext, StandardExpressionExecutionContext expContext)
           Execute the expression.
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.
static IStandardConversionService StandardExpressions.getConversionService(Configuration configuration)
           Obtain the conversion service (implementation of IStandardConversionService) registered by the Standard Dialect that is being currently used.
static IStandardExpressionParser StandardExpressions.getExpressionParser(Configuration configuration)
           Obtain the expression parser (implementation of IStandardExpressionParser) registered by the Standard Dialect that is being currently used.
static IStandardVariableExpressionEvaluator StandardExpressions.getVariableExpressionEvaluator(Configuration configuration)
           Obtain the variable expression evaluator (implementation of IStandardVariableExpressionEvaluator) registered by the Standard Dialect that is being currently used.
static boolean FragmentSelectionUtils.hasSyntheticParameters(FragmentSelection fragmentSelection, Configuration configuration, IProcessingContext processingContext, StandardExpressionExecutionContext expContext)
           
static AssignationSequence StandardExpressionProcessor.parseAssignationSequence(Configuration configuration, IProcessingContext processingContext, String input, boolean allowParametersWithoutValue)
          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.
 AssignationSequence StandardExpressionParser.parseAssignationSequence(Configuration configuration, IProcessingContext processingContext, String input, boolean allowParametersWithoutValue)
           
static AssignationSequence AssignationUtils.parseAssignationSequence(Configuration configuration, IProcessingContext processingContext, String input, boolean allowParametersWithoutValue)
           
static Each StandardExpressionProcessor.parseEach(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.
 Each StandardExpressionParser.parseEach(Configuration configuration, IProcessingContext processingContext, String input)
           
static Each EachUtils.parseEach(Configuration configuration, IProcessingContext processingContext, String input)
           
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)
           
 IStandardExpression IStandardExpressionParser.parseExpression(Configuration configuration, IProcessingContext processingContext, String input)
           Parse the specified expression.
static ExpressionSequence StandardExpressionProcessor.parseExpressionSequence(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.
 ExpressionSequence StandardExpressionParser.parseExpressionSequence(Configuration configuration, IProcessingContext processingContext, String input)
           
static ExpressionSequence ExpressionSequenceUtils.parseExpressionSequence(Configuration configuration, IProcessingContext processingContext, String input)
           
static FragmentSelection StandardExpressionProcessor.parseFragmentSelection(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.
 FragmentSelection StandardExpressionParser.parseFragmentSelection(Configuration configuration, IProcessingContext processingContext, String input)
           
static FragmentSelection FragmentSelectionUtils.parseFragmentSelection(Configuration configuration, IProcessingContext processingContext, String input)
           
 FragmentSignature StandardExpressionParser.parseFragmentSignature(Configuration configuration, IProcessingContext processingContext, String input)
           
static FragmentSignature FragmentSignatureUtils.parseFragmentSignature(Configuration configuration, String input)
           
static Object StandardExpressionProcessor.processExpression(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.
static Object StandardExpressionProcessor.processExpression(Configuration configuration, IProcessingContext processingContext, String input, 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.
 

Uses of Configuration in org.thymeleaf.standard.fragment
 

Methods in org.thymeleaf.standard.fragment that return Configuration
 Configuration StandardFragmentSignatureNodeReferenceChecker.getConfiguration()
           
 

Methods in org.thymeleaf.standard.fragment with parameters of type Configuration
static StandardFragment StandardFragmentProcessor.computeStandardFragmentSpec(Configuration configuration, IProcessingContext processingContext, String standardFragmentSpec, String dialectPrefix, String fragmentSignatureAttributeName)
           
 List<Node> StandardFragment.extractFragment(Configuration configuration, IProcessingContext context, TemplateRepository templateRepository)
           Read the specified template from TemplateRepository, and then apply the IFragmentSpec to the result of parsing it (the template).
 List<Node> StandardDOMSelectorFragmentSpec.extractFragment(Configuration configuration, List<Node> nodes)
           
 

Constructors in org.thymeleaf.standard.fragment with parameters of type Configuration
StandardFragmentSignatureNodeReferenceChecker(Configuration configuration, String dialectPrefix, String fragmentAttributeName)
           
 

Uses of Configuration in org.thymeleaf.templateparser
 

Methods in org.thymeleaf.templateparser with parameters of type Configuration
 List<Node> ITemplateParser.parseFragment(Configuration configuration, String fragment)
           Parses the document fragment contained in the given String object.
 Document ITemplateParser.parseTemplate(Configuration configuration, String documentName, Reader source)
           Parses the document contained in the given Reader object.
 

Constructors in org.thymeleaf.templateparser with parameters of type Configuration
EntityResolver(Configuration configuration)
           
 

Uses of Configuration in org.thymeleaf.templateparser.html
 

Methods in org.thymeleaf.templateparser.html with parameters of type Configuration
 List<Node> AbstractHtmlTemplateParser.parseFragment(Configuration configuration, String fragment)
           
 Document AbstractHtmlTemplateParser.parseTemplate(Configuration configuration, String documentName, Reader reader)
           
 

Uses of Configuration in org.thymeleaf.templateparser.xmldom
 

Methods in org.thymeleaf.templateparser.xmldom with parameters of type Configuration
 List<Node> AbstractNonValidatingDOMTemplateParser.parseFragment(Configuration configuration, String fragment)
          Deprecated.  
 Document AbstractNonValidatingDOMTemplateParser.parseTemplate(Configuration configuration, String documentName, Reader reader)
          Deprecated.  
protected  Document AbstractNonValidatingDOMTemplateParser.parseTemplateUsingPool(Configuration configuration, String documentName, Reader reader, ResourcePool<DocumentBuilder> poolToBeUsed)
          Deprecated.  
 

Uses of Configuration in org.thymeleaf.templateparser.xmlsax
 

Methods in org.thymeleaf.templateparser.xmlsax with parameters of type Configuration
 List<Node> AbstractNonValidatingSAXTemplateParser.parseFragment(Configuration configuration, String fragment)
           
 Document AbstractNonValidatingSAXTemplateParser.parseTemplate(Configuration configuration, String documentName, Reader reader)
           
 

Uses of Configuration in org.thymeleaf.util
 

Methods in org.thymeleaf.util with parameters of type Configuration
static Document DOMUtils.getDOMFor(Configuration configuration, Reader source, ITemplateParser parser)
           
static String MessageResolutionUtils.resolveMessageForClass(Configuration configuration, Class<?> targetClass, Locale locale, String messageKey, Object[] messageParameters)
           
static String MessageResolutionUtils.resolveMessageForClass(Configuration configuration, Class<?> targetClass, Locale locale, String messageKey, Object[] messageParameters, boolean returnStringAlways)
           
 



Copyright © 2014 The THYMELEAF team. All Rights Reserved.