Uses of Class
freemarker.cache.TemplateConfigurationFactory
-
Packages that use TemplateConfigurationFactory Package Description freemarker.cache Template loading and caching.freemarker.template The fundamental, most commonly used API-s of FreeMarker; start withConfiguration
(see also the Getting Started in the Manual.) -
-
Uses of TemplateConfigurationFactory in freemarker.cache
Subclasses of TemplateConfigurationFactory in freemarker.cache Modifier and Type Class Description class
ConditionalTemplateConfigurationFactory
Returns the givenTemplateConfiguration
directly, or anotherTemplateConfigurationFactory
's result, when the specified matcher matches the template source.class
FirstMatchTemplateConfigurationFactory
Returns the first non-null
result of the child factories, ignoring all further child factories.class
MergingTemplateConfigurationFactory
Returns the merged results of all the child factories.Methods in freemarker.cache that return TemplateConfigurationFactory Modifier and Type Method Description TemplateConfigurationFactory
TemplateCache. getTemplateConfigurations()
Constructors in freemarker.cache with parameters of type TemplateConfigurationFactory Constructor Description ConditionalTemplateConfigurationFactory(TemplateSourceMatcher matcher, TemplateConfigurationFactory templateConfigurationFactory)
FirstMatchTemplateConfigurationFactory(TemplateConfigurationFactory... templateConfigurationFactories)
MergingTemplateConfigurationFactory(TemplateConfigurationFactory... templateConfigurationFactories)
TemplateCache(TemplateLoader templateLoader, CacheStorage cacheStorage, TemplateLookupStrategy templateLookupStrategy, TemplateNameFormat templateNameFormat, TemplateConfigurationFactory templateConfigurations, Configuration config)
-
Uses of TemplateConfigurationFactory in freemarker.template
Methods in freemarker.template that return TemplateConfigurationFactory Modifier and Type Method Description TemplateConfigurationFactory
Configuration. getTemplateConfigurations()
The getter pair ofConfiguration.setTemplateConfigurations(TemplateConfigurationFactory)
.Methods in freemarker.template with parameters of type TemplateConfigurationFactory Modifier and Type Method Description void
Configuration. setTemplateConfigurations(TemplateConfigurationFactory templateConfigurations)
Sets aTemplateConfigurationFactory
that will configure individual templates where their settings differ from those coming from the commonConfiguration
object.
-