Package org.thymeleaf
Class DialectSetConfiguration.AggregateExpressionObjectFactory
java.lang.Object
org.thymeleaf.DialectSetConfiguration.AggregateExpressionObjectFactory
- All Implemented Interfaces:
IExpressionObjectFactory
- Enclosing class:
DialectSetConfiguration
static class DialectSetConfiguration.AggregateExpressionObjectFactory
extends Object
implements IExpressionObjectFactory
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate List<IExpressionObjectFactory> private IExpressionObjectFactory -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription(package private) voidadd(IExpressionObjectFactory expressionObjectFactory) buildObject(IExpressionContext context, String expressionObjectName) Build the requested object.Return the complete list of expression objects that can be created by this factory.booleanisCacheable(String expressionObjectName) Returns whether a specific expression object can be cached and reused for all expressions in the same template execution or not.
-
Field Details
-
firstExpressionObjectFactory
-
expressionObjectFactoryList
-
-
Constructor Details
-
AggregateExpressionObjectFactory
AggregateExpressionObjectFactory()
-
-
Method Details
-
add
-
getAllExpressionObjectNames
Description copied from interface:IExpressionObjectFactoryReturn the complete list of expression objects that can be created by this factory.
This list will be used for determining if a factory might actually be asked to build an object, so it should contain all possible objects to be built by the factory.
- Specified by:
getAllExpressionObjectNamesin interfaceIExpressionObjectFactory- Returns:
- the list of objects this factory can build.
-
buildObject
Description copied from interface:IExpressionObjectFactoryBuild the requested object.
- Specified by:
buildObjectin interfaceIExpressionObjectFactory- Parameters:
context- the context being used for processing the template.expressionObjectName- the name of the expression object to be built.- Returns:
- the built object, or
nullif the object could not be built.
-
isCacheable
Description copied from interface:IExpressionObjectFactoryReturns whether a specific expression object can be cached and reused for all expressions in the same template execution or not.
Note this cacheable flag refers only to reuse of the object in expressions in expressions executed during a single template execution.
- Specified by:
isCacheablein interfaceIExpressionObjectFactory- Parameters:
expressionObjectName- the name of the expression object.- Returns:
trueis the object is to be considered cacheable,falseif not.
-