Package freemarker.template
Class TemplateModelListSequence
- java.lang.Object
-
- freemarker.template.TemplateModelListSequence
-
- All Implemented Interfaces:
TemplateModel,TemplateSequenceModel
public class TemplateModelListSequence extends java.lang.Object implements TemplateSequenceModel
A sequence that wraps aListofTemplateModel-s. It does not copy the original list. It's mostly useful when implementingTemplateMethodModelEx-es that collect items from otherTemplateModel-s.
-
-
Field Summary
-
Fields inherited from interface freemarker.template.TemplateModel
NOTHING
-
-
Constructor Summary
Constructors Constructor Description TemplateModelListSequence(java.util.List list)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TemplateModelget(int index)Retrieves the i-th template model in this sequence.java.lang.ObjectgetWrappedObject()Returns the originalListofTemplateModel-s, so it's not a fully unwrapped value.intsize()
-
-
-
Method Detail
-
get
public TemplateModel get(int index)
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, unless the default value for that case was also specified in the template.
-
size
public int size()
- Specified by:
sizein interfaceTemplateSequenceModel- Returns:
- the number of items in the list.
-
getWrappedObject
public java.lang.Object getWrappedObject()
Returns the originalListofTemplateModel-s, so it's not a fully unwrapped value.
-
-