Uses of Interface
org.thymeleaf.dialect.IDialect
-
Packages that use IDialect Package Description org.thymeleaf org.thymeleaf.dialect org.thymeleaf.standard -
-
Uses of IDialect in org.thymeleaf
Methods in org.thymeleaf that return IDialect Modifier and Type Method Description IDialect
DialectConfiguration. getDialect()
Methods in org.thymeleaf that return types with arguments of type IDialect Modifier and Type Method Description Set<IDialect>
EngineConfiguration. getDialects()
Set<IDialect>
IEngineConfiguration. getDialects()
Set<IDialect>
TemplateEngine. getDialects()
Returns the configured dialects.Map<String,Set<IDialect>>
TemplateEngine. getDialectsByPrefix()
Returns the configured dialects, referenced by their prefixes.Methods in org.thymeleaf with parameters of type IDialect Modifier and Type Method Description void
TemplateEngine. addDialect(String prefix, IDialect dialect)
Adds a new dialect for this template engine, using the specified prefix.void
TemplateEngine. addDialect(IDialect dialect)
Adds a new dialect for this template engine, using the dialect's specified default dialect.void
TemplateEngine. setDialect(IDialect dialect)
Sets a new unique dialect for this template engine.Method parameters in org.thymeleaf with type arguments of type IDialect Modifier and Type Method Description void
TemplateEngine. setAdditionalDialects(Set<IDialect> additionalDialects)
Sets an additional set of dialects for this template engine, all of them using their default prefixes.void
TemplateEngine. setDialects(Set<IDialect> dialects)
Sets a new set of dialects for this template engine, all of them using their default prefixes.void
TemplateEngine. setDialectsByPrefix(Map<String,IDialect> dialects)
Sets a new set of dialects for this template engine, referenced by the prefixes they will be using.Constructors in org.thymeleaf with parameters of type IDialect Constructor Description DialectConfiguration(String prefix, IDialect dialect)
DialectConfiguration(IDialect dialect)
-
Uses of IDialect in org.thymeleaf.dialect
Subinterfaces of IDialect in org.thymeleaf.dialect Modifier and Type Interface Description interface
IExecutionAttributeDialect
interface
IExpressionObjectDialect
interface
IPostProcessorDialect
interface
IPreProcessorDialect
interface
IProcessorDialect
Base interface for all dialects providing processors (IProcessor
objects) to the template engine.Classes in org.thymeleaf.dialect that implement IDialect Modifier and Type Class Description class
AbstractDialect
Base abstract implementation of theIDialect
interface.class
AbstractProcessorDialect
-
Uses of IDialect in org.thymeleaf.standard
Classes in org.thymeleaf.standard that implement IDialect Modifier and Type Class Description class
StandardDialect
Standard Dialect.
-