Uses of Class
freemarker.core.MarkupOutputFormat
-
Packages that use MarkupOutputFormat Package Description freemarker.core The seldom used or advanced parts of the fundamental FreeMarker API, compared tofreemarker.template
. -
-
Uses of MarkupOutputFormat in freemarker.core
Subclasses of MarkupOutputFormat in freemarker.core Modifier and Type Class Description class
CombinedMarkupOutputFormat
Represents two markup formats nested into each other.class
CommonMarkupOutputFormat<MO extends CommonTemplateMarkupOutputModel>
Common superclass for implementingMarkupOutputFormat
-s that use aCommonTemplateMarkupOutputModel
subclass.class
HTMLOutputFormat
Represents the HTML output format (MIME type "text/html", name "HTML").class
RTFOutputFormat
Represents the Rich Text Format output format (MIME type "application/rtf", name "RTF").class
XHTMLOutputFormat
Represents the XML output format (MIME type "application/xhtml+xml", name "XHTML"); this behaves identically toHTMLOutputFormat
, except that the name an the MIME Type differs.class
XMLOutputFormat
Represents the XML output format (MIME type "application/xml", name "XML").Methods in freemarker.core that return MarkupOutputFormat Modifier and Type Method Description MarkupOutputFormat
CombinedMarkupOutputFormat. getInnerOutputFormat()
MarkupOutputFormat
CombinedMarkupOutputFormat. getOuterOutputFormat()
MarkupOutputFormat<MO>
TemplateMarkupOutputModel. getOutputFormat()
Returns the singletonOutputFormat
object that implements the operations for the "markup output" value.Constructors in freemarker.core with parameters of type MarkupOutputFormat Constructor Description CombinedMarkupOutputFormat(MarkupOutputFormat outer, MarkupOutputFormat inner)
Same asCombinedMarkupOutputFormat(String, MarkupOutputFormat, MarkupOutputFormat)
withnull
as thename
parameter.CombinedMarkupOutputFormat(java.lang.String name, MarkupOutputFormat outer, MarkupOutputFormat inner)
-