Uses of Interface
freemarker.template.TemplateSequenceModel
-
Packages that use TemplateSequenceModel Package Description freemarker.ext.beans The default object wrapper of FreeMarker uses this to expose Java Beans and POJO-s to templates.freemarker.ext.dom Exposes DOM XML nodes to templates as easily traversable trees; see in the Manual.freemarker.ext.jdom Deprecated, use W3C DOM (freemarker.ext.dom) instead; Exposes JDOM XML nodes to templates.freemarker.ext.xml Deprecated, use W3C DOM withfreemarker.ext.dominstead; Exposes XML from DOM, dom4j or JDOM nodes, uniformly.freemarker.template The fundamental, most commonly used API-s of FreeMarker; start withConfiguration(see also the Getting Started in the Manual.)freemarker.template.utility Various classes used by core FreeMarker code but might be useful outside of it too. -
-
Uses of TemplateSequenceModel in freemarker.ext.beans
Classes in freemarker.ext.beans that implement TemplateSequenceModel Modifier and Type Class Description classArrayModelA class that will wrap an arbitrary array intoTemplateCollectionModelandTemplateSequenceModelinterfaces.classCollectionModelA special case ofBeanModelthat can wrap Java collections and that implements theTemplateCollectionModelin order to be usable in a <#list> block.classOverloadedMethodsModelWraps a set of same-name overloaded methods behindTemplateMethodModelinterface, like if it was a single method, chooses among them behind the scenes on call-time based on the argument values.classSimpleMethodModelA class that will wrap a reflected method call into aTemplateMethodModelinterface. -
Uses of TemplateSequenceModel in freemarker.ext.dom
Classes in freemarker.ext.dom that implement TemplateSequenceModel Modifier and Type Class Description classNodeModelA base class for wrapping a single W3C DOM Node as a FreeMarker template model.Methods in freemarker.ext.dom that return TemplateSequenceModel Modifier and Type Method Description TemplateSequenceModelNodeModel. getChildNodes() -
Uses of TemplateSequenceModel in freemarker.ext.jdom
Classes in freemarker.ext.jdom that implement TemplateSequenceModel Modifier and Type Class Description classNodeListModelDeprecated.UseNodeModelinstead. -
Uses of TemplateSequenceModel in freemarker.ext.xml
Classes in freemarker.ext.xml that implement TemplateSequenceModel Modifier and Type Class Description classNodeListModelDeprecated.UseNodeModelinstead.Methods in freemarker.ext.xml that return TemplateSequenceModel Modifier and Type Method Description TemplateSequenceModelNodeListModel. getChildNodes()Deprecated. -
Uses of TemplateSequenceModel in freemarker.template
Classes in freemarker.template that implement TemplateSequenceModel Modifier and Type Class Description classDefaultArrayAdapterAdapts anarrayof a non-primitive elements to the correspondingTemplateModelinterface(s), most importantly toTemplateHashModelEx.classDefaultListAdapterAdapts aListto the correspondingTemplateModelinterface(s), most importantly toTemplateSequenceModel.classSimpleListDeprecated.UseSimpleSequenceinstead.classSimpleSequenceA simple implementation of theTemplateSequenceModelinterface, using its own underlyingListfor storing the list items.classTemplateModelListSequenceA sequence that wraps aListofTemplateModel-s.Methods in freemarker.template that return TemplateSequenceModel Modifier and Type Method Description TemplateSequenceModelTemplateNodeModel. getChildNodes() -
Uses of TemplateSequenceModel in freemarker.template.utility
Fields in freemarker.template.utility declared as TemplateSequenceModel Modifier and Type Field Description static TemplateSequenceModelConstants. EMPTY_SEQUENCE
-