Uses of Interface
freemarker.template.TemplateCollectionModel
-
Packages that use TemplateCollectionModel Package Description freemarker.ext.beans The default object wrapper of FreeMarker uses this to expose Java Beans and POJO-s to templates.freemarker.ext.jdom Deprecated, use W3C DOM (freemarker.ext.dom) instead; Exposes JDOM XML nodes to templates.freemarker.ext.servlet Servlet for legacy "Model 2" frameworks that allows using FreeMarker templates instead of JSP as the MVC View (see in the Manual).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 TemplateCollectionModel in freemarker.ext.beans
Classes in freemarker.ext.beans that implement TemplateCollectionModel 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.classEnumerationModelA class that addsTemplateModelIteratorfunctionality to theEnumerationinterface implementers.classIteratorModelA class that addsTemplateModelIteratorfunctionality to theIteratorinterface implementers.Methods in freemarker.ext.beans that return TemplateCollectionModel Modifier and Type Method Description TemplateCollectionModelBeanModel. keys()TemplateCollectionModelSimpleMapModel. keys()TemplateCollectionModelBeanModel. values()TemplateCollectionModelSimpleMapModel. values() -
Uses of TemplateCollectionModel in freemarker.ext.jdom
Classes in freemarker.ext.jdom that implement TemplateCollectionModel Modifier and Type Class Description classNodeListModelDeprecated.UseNodeModelinstead. -
Uses of TemplateCollectionModel in freemarker.ext.servlet
Methods in freemarker.ext.servlet that return TemplateCollectionModel Modifier and Type Method Description TemplateCollectionModelHttpRequestHashModel. keys()TemplateCollectionModelHttpRequestParametersHashModel. keys()TemplateCollectionModelHttpRequestHashModel. values()TemplateCollectionModelHttpRequestParametersHashModel. values() -
Uses of TemplateCollectionModel in freemarker.template
Subinterfaces of TemplateCollectionModel in freemarker.template Modifier and Type Interface Description interfaceTemplateCollectionModelEx"collection" template language data type: Adds size/emptiness querybility toTemplateCollectionModel.Classes in freemarker.template that implement TemplateCollectionModel Modifier and Type Class Description classDefaultEnumerationAdapterAdapts anEnumerationto the correspondingTemplateModelinterface(s), most importantly toTemplateCollectionModel.classDefaultIterableAdapterAdapts anIterableto the correspondingTemplateModelinterface(s), most importantly toTemplateCollectionModel.classDefaultIteratorAdapterAdapts anIteratorto the correspondingTemplateModelinterface(s), most importantly toTemplateCollectionModel.classDefaultNonListCollectionAdapterAdapts a non-ListJavaCollectionto the correspondingTemplateModelinterface(s), most importantly toTemplateCollectionModelEx.classSimpleCollectionA simple implementation ofTemplateCollectionModel.Methods in freemarker.template that return TemplateCollectionModel Modifier and Type Method Description TemplateCollectionModelDefaultMapAdapter. keys()TemplateCollectionModelSimpleHash. keys()TemplateCollectionModelTemplateHashModelEx. keys()TemplateCollectionModelDefaultMapAdapter. values()TemplateCollectionModelSimpleHash. values()TemplateCollectionModelTemplateHashModelEx. values()Constructors in freemarker.template with parameters of type TemplateCollectionModel Constructor Description SimpleSequence(TemplateCollectionModel tcm)Constructs a simple sequence from the passed collection model, which shouldn't be added to later. -
Uses of TemplateCollectionModel in freemarker.template.utility
Fields in freemarker.template.utility declared as TemplateCollectionModel Modifier and Type Field Description static TemplateCollectionModelConstants. EMPTY_COLLECTION
-