Package freemarker.template
Interface TemplateScalarModel
- All Superinterfaces:
TemplateModel
- All Known Implementing Classes:
LocalizedString,ResourceBundleLocalizedString,SimpleScalar
String values in a template data model must implement this interface.
(Actually, the name of this interface should be
TemplateStringModel. The bad name was inherited from the
ancient times, when there was only 1 kind of scalars in FreeMarker.)-
Nested Class Summary
Nested classes/interfaces inherited from interface freemarker.template.TemplateModel
TemplateModel.InvalidExpressionModel, TemplateModel.JavaNull -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final TemplateModelA constant value to use as the empty string.Fields inherited from interface freemarker.template.TemplateModel
INVALID_EXPRESSION, JAVA_NULL, NOTHING -
Method Summary
Modifier and TypeMethodDescriptionReturns the string representation of this model.
-
Field Details
-
EMPTY_STRING
A constant value to use as the empty string.
-
-
Method Details
-
getAsString
Returns the string representation of this model. In general, avoid returning null. In compatibility mode the engine will convert null into empty string, however in normal mode it will throw an exception if you return null from this method.- Throws:
TemplateModelException
-