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 IDialectDialectConfiguration. 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 voidTemplateEngine. addDialect(String prefix, IDialect dialect)Adds a new dialect for this template engine, using the specified prefix.voidTemplateEngine. addDialect(IDialect dialect)Adds a new dialect for this template engine, using the dialect's specified default dialect.voidTemplateEngine. 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 voidTemplateEngine. setAdditionalDialects(Set<IDialect> additionalDialects)Sets an additional set of dialects for this template engine, all of them using their default prefixes.voidTemplateEngine. setDialects(Set<IDialect> dialects)Sets a new set of dialects for this template engine, all of them using their default prefixes.voidTemplateEngine. 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 interfaceIExecutionAttributeDialectinterfaceIExpressionObjectDialectinterfaceIPostProcessorDialectinterfaceIPreProcessorDialectinterfaceIProcessorDialectBase interface for all dialects providing processors (IProcessorobjects) to the template engine.Classes in org.thymeleaf.dialect that implement IDialect Modifier and Type Class Description classAbstractDialectBase abstract implementation of theIDialectinterface.classAbstractProcessorDialect -
Uses of IDialect in org.thymeleaf.standard
Classes in org.thymeleaf.standard that implement IDialect Modifier and Type Class Description classStandardDialectStandard Dialect.
-