Package | Description |
---|---|
freemarker.core |
This package contains FreeMarker's core parsing/rendering functionality;
most casual users do not need to be aware of the classes in this package,
and can restrict their attention to the
freemarker.template
package. |
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.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 | Method and Description |
---|---|
TemplateModelIterator |
CollectionAndSequence.iterator() |
Modifier and Type | Class and Description |
---|---|
class |
EnumerationModel
A class that adds
TemplateModelIterator functionality to the
Enumeration interface implementers. |
class |
IteratorModel
A class that adds
TemplateModelIterator functionality to the
Iterator interface implementers. |
Modifier and Type | Method and Description |
---|---|
TemplateModelIterator |
IteratorModel.iterator()
This allows the iterator to be used in a <foreach> block.
|
TemplateModelIterator |
EnumerationModel.iterator()
This allows the enumeration to be used in a <foreach> block.
|
TemplateModelIterator |
ArrayModel.iterator() |
TemplateModelIterator |
CollectionModel.iterator() |
Modifier and Type | Method and Description |
---|---|
TemplateModelIterator |
NodeListModel.iterator()
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
TemplateModelIterator |
JythonSequenceModel.iterator() |
Modifier and Type | Method and Description |
---|---|
TemplateModelIterator |
TemplateCollectionModel.iterator()
Retrieves a template model iterator that is used to iterate over
the elements in this collection.
|
TemplateModelIterator |
SimpleCollection.iterator()
Retrieves a template model iterator that is used to iterate over the elements in this collection.
|
Modifier and Type | Field and Description |
---|---|
static TemplateModelIterator |
Constants.EMPTY_ITERATOR |