Uses of Interface
com.samskivert.mustache.Mustache.Escaper
-
-
Uses of Mustache.Escaper in com.samskivert.mustache
Fields in com.samskivert.mustache declared as Mustache.Escaper Modifier and Type Field Description protected Mustache.Escaper
Mustache.VariableSegment. _escaper
Mustache.Escaper
Mustache.Compiler. escaper
Handles escaping characters in substituted text.static Mustache.Escaper
Escapers. HTML
Escapes HTML entities.static Mustache.Escaper
Escapers. NONE
An escaper that does no escaping.Methods in com.samskivert.mustache that return Mustache.Escaper Modifier and Type Method Description static Mustache.Escaper
Escapers. simple(java.lang.String[]... repls)
Returns an escaper that replaces a list of text sequences with canned replacements.Methods in com.samskivert.mustache with parameters of type Mustache.Escaper Modifier and Type Method Description Mustache.Compiler
Mustache.Compiler. withEscaper(Mustache.Escaper escaper)
Configures theMustache.Escaper
used to escape substituted text.Constructors in com.samskivert.mustache with parameters of type Mustache.Escaper Constructor Description Compiler(boolean standardsMode, boolean strictSections, java.lang.String nullValue, boolean missingIsNull, boolean emptyStringIsFalse, boolean zeroIsFalse, Mustache.Formatter formatter, Mustache.Escaper escaper, Mustache.TemplateLoader loader, Mustache.Collector collector, Mustache.Delims delims)
VariableSegment(java.lang.String name, int line, Mustache.Formatter formatter, Mustache.Escaper escaper)
-