Package freemarker.template
Class TemplateModelListSequence
java.lang.Object
freemarker.template.TemplateModelListSequence
- All Implemented Interfaces:
TemplateModel,TemplateSequenceModel
Sequence that wraps a
java.util.List of already wrapped objects
directly, with minimal resource usage. Warning! It does not copy the original
list.-
Nested Class Summary
Nested classes/interfaces inherited from interface freemarker.template.TemplateModel
TemplateModel.InvalidExpressionModel, TemplateModel.JavaNull -
Field Summary
Fields inherited from interface freemarker.template.TemplateModel
INVALID_EXPRESSION, JAVA_NULL, NOTHING -
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
TemplateModelListSequence
-
-
Method Details
-
get
Description copied from interface:TemplateSequenceModelRetrieves the i-th template model in this sequence.- Specified by:
getin interfaceTemplateSequenceModel- Returns:
- the item at the specified index, or
nullif the index is out of bounds. Note that anullvalue is interpreted by FreeMarker as "variable does not exist", and accessing a missing variables is usually considered as an error in the FreeMarker Template Language, so the usage of a bad index will not remain hidden.
-
size
public int size()- Specified by:
sizein interfaceTemplateSequenceModel- Returns:
- the number of items in the list.
-
getWrappedObject
-