Uses of Class
freemarker.core.ParseException
Packages that use ParseException
Package
Description
The seldom used or advanced parts of the fundamental FreeMarker API, compared to
freemarker.template
.The fundamental, most commonly used API-s of FreeMarker;
start with
Configuration
(see also the
Getting Started in the Manual.)Various classes used by core FreeMarker code but might be useful outside of it too.
-
Uses of ParseException in freemarker.core
Methods in freemarker.core that throw ParseExceptionModifier and TypeMethodDescriptionprotected HashMap
Configurable.parseAsImportList
(String text) protected ArrayList
Configurable.parseAsList
(String text) protected ArrayList
Configurable.parseAsSegmentedList
(String text) -
Uses of ParseException in freemarker.template
Subclasses of ParseException in freemarker.templateModifier and TypeClassDescriptionstatic class
Thrown by theTemplate
constructors that specify a non-null
encoding whoch doesn't match the encoding specified in the#ftl
header of the template.Methods in freemarker.template that throw ParseExceptionModifier and TypeMethodDescriptionConfiguration.getTemplate
(String name) Retrieves the template with the given name from the template cache, loading it into the cache first if it's missing/staled.Configuration.getTemplate
(String name, String encoding) Shorthand forgetTemplate(name, null, null, encoding, true, false)
.Configuration.getTemplate
(String name, Locale locale) Shorthand forgetTemplate(name, locale, null, null, true, false)
.Configuration.getTemplate
(String name, Locale locale, Object customLookupCondition, String encoding, boolean parseAsFTL, boolean ignoreMissing) Retrieves the template with the given name (and according the specified further parameters) from the template cache, loading it into the cache first if it's missing/staled.Configuration.getTemplate
(String name, Locale locale, String encoding) Shorthand forgetTemplate(name, locale, null, encoding, true, false)
.Configuration.getTemplate
(String name, Locale locale, String encoding, boolean parseAsFTL) Shorthand forgetTemplate(name, locale, null, encoding, parseAsFTL, false)
.Configuration.getTemplate
(String name, Locale locale, String encoding, boolean parseAsFTL, boolean ignoreMissing) -
Uses of ParseException in freemarker.template.utility
Methods in freemarker.template.utility that throw ParseExceptionModifier and TypeMethodDescriptionstatic String
StringUtil.FTLStringLiteralDec
(String s) FTL string literal decoding.