public final class UndefinedOutputFormat extends OutputFormat
Configuration.setTemplateConfigurations(freemarker.cache.TemplateConfigurationFactory)
). This format doesn't
support auto-escaping (Configuration.setAutoEscapingPolicy(int)
). It will print
TemplateMarkupOutputModel
-s as is (doesn't try to convert them).PlainTextOutputFormat
Modifier and Type | Field and Description |
---|---|
static UndefinedOutputFormat |
INSTANCE |
Modifier and Type | Method and Description |
---|---|
String |
getMimeType()
Returns the MIME type of the output format.
|
String |
getName()
The short name used to refer to this format (like in the
#ftl header). |
boolean |
isOutputFormatMixingAllowed()
Tells if this output format allows inserting
TemplateMarkupOutputModel -s of another output formats into
it. |
toString, toStringExtraProperties
public static final UndefinedOutputFormat INSTANCE
public boolean isOutputFormatMixingAllowed()
OutputFormat
TemplateMarkupOutputModel
-s of another output formats into
it. If true
, the foreign TemplateMarkupOutputModel
will be inserted into the output as is (like
if the surrounding output format was the same). This is usually a bad idea allow, as such an event could indicate
application bugs. If this method returns false
(recommended), then FreeMarker will try to assimilate the
inserted value by converting its format to this format, which will currently (2.3.24) cause exception, unless the
inserted value is made by escaping plain text and the target format is non-escaping, in which case format
conversion is trivially possible. (It's not impossible that conversions will be extended beyond this, if there
will be demand for that.)
true
value is used by UndefinedOutputFormat
.
isOutputFormatMixingAllowed
in class OutputFormat
public String getName()
OutputFormat
#ftl
header).getName
in class OutputFormat
public String getMimeType()
OutputFormat
null
if this output format doesn't clearly corresponds to a specific MIME type.getMimeType
in class OutputFormat