Uses of Class
freemarker.ext.beans.BeansWrapperConfiguration
-
Packages that use BeansWrapperConfiguration Package Description freemarker.ext.beans Thedefault object wrapper
of FreeMarker uses this to expose Java Beans and POJO-s to templates, but it can also be used in itself as a better alternativeObjectWrapper
.freemarker.template The fundamental, most commonly used API-s of FreeMarker; start withConfiguration
(see also the Getting Stared in the Manual.) -
-
Uses of BeansWrapperConfiguration in freemarker.ext.beans
Subclasses of BeansWrapperConfiguration in freemarker.ext.beans Modifier and Type Class Description class
BeansWrapperBuilder
Gets/creates aBeansWrapper
singleton instance that's already configured as specified in the properties of this object; this is recommended over using theBeansWrapper
constructors.Constructors in freemarker.ext.beans with parameters of type BeansWrapperConfiguration Constructor Description BeansWrapper(BeansWrapperConfiguration bwConf, boolean writeProtected)
Same asBeansWrapper(BeansWrapperConfiguration, boolean, boolean)
withtrue
finalizeConstruction
argument.BeansWrapper(BeansWrapperConfiguration bwConf, boolean writeProtected, boolean finalizeConstruction)
Initializes the instance based on the theBeansWrapperConfiguration
specified. -
Uses of BeansWrapperConfiguration in freemarker.template
Subclasses of BeansWrapperConfiguration in freemarker.template Modifier and Type Class Description class
DefaultObjectWrapperBuilder
Gets/creates aDefaultObjectWrapper
singleton instance that's already configured as specified in the properties of this object; this is recommended over using theDefaultObjectWrapper
constructors.class
DefaultObjectWrapperConfiguration
HoldsDefaultObjectWrapper
configuration settings and defines their defaults.Constructors in freemarker.template with parameters of type BeansWrapperConfiguration Constructor Description DefaultObjectWrapper(BeansWrapperConfiguration bwCfg, boolean writeProtected)
UseDefaultObjectWrapper(DefaultObjectWrapperConfiguration, boolean)
instead if possible; it does the same, except that it tolerates a non-DefaultObjectWrapperConfiguration
configuration too.
-