- emptyStringIsFalse - Variable in class com.samskivert.mustache.Mustache.Compiler
-
If this value is true, empty string will be treated as a false value, as in JavaScript
mustache implementation.
- emptyStringIsFalse(boolean) - Method in class com.samskivert.mustache.Mustache.Compiler
-
Returns a compiler that will treat empty string as a false value if parameter is true.
- escape(String) - Method in interface com.samskivert.mustache.Mustache.Escaper
-
Returns raw
with the appropriate characters replaced with escape sequences.
- escapeHTML(boolean) - Method in class com.samskivert.mustache.Mustache.Compiler
-
Returns a compiler that either does or does not escape HTML by default.
- escaper - Variable in class com.samskivert.mustache.Mustache.Compiler
-
Handles escaping characters in substituted text.
- Escapers - Class in com.samskivert.mustache
-
- Escapers() - Constructor for class com.samskivert.mustache.Escapers
-
- execute(Template.Fragment, Writer) - Method in interface com.samskivert.mustache.Mustache.Lambda
-
Executes this lambda on the supplied template fragment.
- execute(Object) - Method in class com.samskivert.mustache.Template
-
Executes this template with the given context, returning the results as a string.
- execute(Object, Writer) - Method in class com.samskivert.mustache.Template
-
Executes this template with the given context, writing the results to the supplied writer.
- execute(Object, Object, Writer) - Method in class com.samskivert.mustache.Template
-
Executes this template with the supplied context and parent context, writing the results to
the supplied writer.
- execute(Writer) - Method in class com.samskivert.mustache.Template.Fragment
-
Executes this fragment; writes its result to out
.
- execute(Object, Writer) - Method in class com.samskivert.mustache.Template.Fragment
-
Executes this fragment with the provided context; writes its result to out
.
- execute() - Method in class com.samskivert.mustache.Template.Fragment
-
Executes this fragment and returns its result as a string.
- execute(Object) - Method in class com.samskivert.mustache.Template.Fragment
-
Executes this fragment with the provided context; returns its result as a string.
- executeInverse(Template.Fragment, Writer) - Method in interface com.samskivert.mustache.Mustache.InvertibleLambda
-
Executes this lambda on the supplied template fragment, when the lambda is used in an
inverse section.