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 classConditionalTemplateConfigurationFactoryReturns the givenTemplateConfigurationdirectly, or anotherTemplateConfigurationFactory's result, when the specified matcher matches the template source.classFirstMatchTemplateConfigurationFactoryReturns the first non-nullresult of the child factories, ignoring all further child factories.classMergingTemplateConfigurationFactoryReturns the merged results of all the child factories.Methods in freemarker.cache that return TemplateConfigurationFactory Modifier and Type Method Description TemplateConfigurationFactoryTemplateCache. 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 TemplateConfigurationFactoryConfiguration. getTemplateConfigurations()The getter pair ofConfiguration.setTemplateConfigurations(TemplateConfigurationFactory).Methods in freemarker.template with parameters of type TemplateConfigurationFactory Modifier and Type Method Description voidConfiguration. setTemplateConfigurations(TemplateConfigurationFactory templateConfigurations)Sets aTemplateConfigurationFactorythat will configure individual templates where their settings differ from those coming from the commonConfigurationobject.
-