Uses of Class
freemarker.core.TemplateNumberFormatFactory
Packages that use TemplateNumberFormatFactory
Package
Description
The seldom used or advanced parts of the fundamental FreeMarker API, compared to
freemarker.template
.-
Uses of TemplateNumberFormatFactory in freemarker.core
Subclasses of TemplateNumberFormatFactory in freemarker.coreModifier and TypeClassDescriptionfinal class
Creates an alias to another format, so that the format can be referred to with a simple name in the template, rather than as a concrete pattern or other kind of format string.Methods in freemarker.core that return TemplateNumberFormatFactoryModifier and TypeMethodDescriptionConfigurable.getCustomNumberFormat
(String name) Gets the custom name format registered for the name.Methods in freemarker.core that return types with arguments of type TemplateNumberFormatFactoryModifier and TypeMethodDescriptionMap
<String, ? extends TemplateNumberFormatFactory> Configurable.getCustomNumberFormats()
Getter pair ofConfigurable.setCustomNumberFormats(Map)
; do not modify the returnedMap
! To be consistent with other setting getters, if this setting was set directly on thisConfigurable
object, this simply returns that value, otherwise it returns the value from the parentConfigurable
.Map
<String, ? extends TemplateNumberFormatFactory> Configurable.getCustomNumberFormatsWithoutFallback()
LikeConfigurable.getCustomNumberFormats()
, but doesn't fall back to the parentConfigurable
.Method parameters in freemarker.core with type arguments of type TemplateNumberFormatFactoryModifier and TypeMethodDescriptionvoid
Configurable.setCustomNumberFormats
(Map<String, ? extends TemplateNumberFormatFactory> customNumberFormats) Associates names with formatter factories, which then can be referred by thenumber_format
setting with values starting with@name
.