Uses of Interface
freemarker.template.TemplateCollectionModel
-
Packages that use TemplateCollectionModel Package Description freemarker.ext.beans Thedefault object wrapperof FreeMarker uses this to expose Java Beans and POJO-s to templates, but it can also be used in itself as a better alternativeObjectWrapper.freemarker.ext.jdom Deprecated, use W3C DOM (freemarker.ext.dom) instead; Exposes JDOM XML nodes to templates.freemarker.ext.jython Exposes Jython objects to templates.freemarker.ext.rhino Exposes Rhino (ECMAScript) objects 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 Stared 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.jython
Classes in freemarker.ext.jython that implement TemplateCollectionModel Modifier and Type Class Description classJythonSequenceModelModel for Jython sequence objects (PySequencedescendants).Methods in freemarker.ext.jython that return TemplateCollectionModel Modifier and Type Method Description TemplateCollectionModelJythonHashModel. keys()Returns eitherobject.__findattr__("keys").__call__()orobject.__findattr__("keySet").__call__().TemplateCollectionModelJythonHashModel. values()Returnsobject.__findattr__("values").__call__(). -
Uses of TemplateCollectionModel in freemarker.ext.rhino
Methods in freemarker.ext.rhino that return TemplateCollectionModel Modifier and Type Method Description TemplateCollectionModelRhinoScriptableModel. keys()TemplateCollectionModelRhinoScriptableModel. values() -
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 interfaceTemplateCollectionModelExExperimental - subject to change: "extended collection" template language data type: Adds size/emptiness querybility and "contains" test toTemplateCollectionModel.Classes in freemarker.template that implement TemplateCollectionModel Modifier and Type Class Description classDefaultIteratorAdapterAdapts anIteratorto the correspondingTemplateModelinterface(s), most importantly toTemplateCollectionModel.classDefaultNonListCollectionAdapterExperimental - subject to change: Adapts 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
-