| Package | Description |
|---|---|
| freemarker.ext.beans |
Provides model implementations that allow access to arbitrary Java objects.
|
| freemarker.ext.jdom | |
| freemarker.ext.jython |
Provides model implementations that allow access to arbitrary
Jython objects.
|
| freemarker.ext.rhino |
Rhino (ECMAScript) support
|
| freemarker.template |
This package contains the core API's that most users will use.
|
| freemarker.template.utility |
Utility classes that may be used to customize aspects of FreeMarker.
|
| Modifier and Type | Class and Description |
|---|---|
class |
CollectionModel
A special case of
BeanModel that can wrap Java collections
and that implements the TemplateCollectionModel in order to be usable
in a <foreach> block. |
class |
MapModel
A special case of
BeanModel that adds implementation
for TemplateMethodModelEx on map objects that is a shortcut for the
Map.get() method. |
class |
StringModel
Subclass of
BeanModel that exposes the return value of the Object.toString() method through the TemplateScalarModel
interface. |
| Modifier and Type | Class and Description |
|---|---|
class |
NodeListModel
Deprecated.
Use
NodeModel instead. |
| Modifier and Type | Class and Description |
|---|---|
class |
JythonHashModel
Model for Jython dictionaries (
PyDictionary
and PyStringMap). |
class |
JythonModel
Generic model for arbitrary Jython objects.
|
class |
JythonNumberModel
Model for Jython numeric objects (
PyInteger, PyLong,
PyFloat). |
class |
JythonSequenceModel
Model for Jython sequence objects (
PySequence descendants). |
| Modifier and Type | Class and Description |
|---|---|
class |
RhinoFunctionModel |
class |
RhinoScriptableModel |
| Modifier and Type | Class and Description |
|---|---|
class |
LocalizedString
An abstract base class for scalars that vary by locale.
|
class |
ResourceBundleLocalizedString
A concrete implementation of
LocalizedString that gets
a localized string from a ResourceBundle |
class |
SimpleScalar
A simple implementation of the TemplateScalarModel
interface, using a String.
|
| Modifier and Type | Field and Description |
|---|---|
static TemplateScalarModel |
Constants.EMPTY_STRING |