Package freemarker.template
Interface TemplateNumberModel
-
- All Superinterfaces:
TemplateModel
- All Known Implementing Classes:
JythonNumberModel
,NumberModel
,RhinoFunctionModel
,RhinoScriptableModel
,SimpleNumber
public interface TemplateNumberModel extends TemplateModel
"number" template language data type; an object that stores a number. There's only one numerical type as far as the template language is concerned, but it can store its value using whatever Java number type. Making operations between numbers (and so the coercion rules) is up to theArithmeticEngine
.
-
-
Field Summary
-
Fields inherited from interface freemarker.template.TemplateModel
NOTHING
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Number
getAsNumber()
Returns the numeric value.
-
-
-
Method Detail
-
getAsNumber
Number getAsNumber() throws TemplateModelException
Returns the numeric value. The return value must not be null.- Returns:
- the
Number
instance associated with this number model. - Throws:
TemplateModelException
-
-