Uses of Interface
org.thymeleaf.dialect.IDialect
-
Packages that use IDialect Package Description org.thymeleaf org.thymeleaf.dialect org.thymeleaf.standard org.thymeleaf.testing.templateengine.engine -
-
Uses of IDialect in org.thymeleaf
Fields in org.thymeleaf declared as IDialect Modifier and Type Field Description private IDialectDialectConfiguration. dialectFields in org.thymeleaf with type parameters of type IDialect Modifier and Type Field Description private java.util.Set<IDialect>DialectSetConfiguration. dialectsMethods in org.thymeleaf with type parameters of type IDialect Modifier and Type Method Description <T extends IDialect>
java.util.Set<T>EngineConfiguration. getDialectsOfType(java.lang.Class<T> type)<T extends IDialect>
java.util.Set<T>IEngineConfiguration. getDialectsOfType(java.lang.Class<T> type)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 java.util.Set<IDialect>DialectSetConfiguration. getDialects()java.util.Set<IDialect>EngineConfiguration. getDialects()java.util.Set<IDialect>IEngineConfiguration. getDialects()java.util.Set<IDialect>TemplateEngine. getDialects()Returns the configured dialects.java.util.Map<java.lang.String,java.util.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(java.lang.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.private static voidConfigurationPrinterHelper. printDebugConfiguration(ConfigurationPrinterHelper.ConfigLogBuilder logBuilder, IDialect idialect, java.lang.String dialectPrefix)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(java.util.Set<IDialect> additionalDialects)Sets an additional set of dialects for this template engine, all of them using their default prefixes.voidTemplateEngine. setDialects(java.util.Set<IDialect> dialects)Sets a new set of dialects for this template engine, all of them using their default prefixes.voidTemplateEngine. setDialectsByPrefix(java.util.Map<java.lang.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(java.lang.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. -
Uses of IDialect in org.thymeleaf.testing.templateengine.engine
Fields in org.thymeleaf.testing.templateengine.engine with type parameters of type IDialect Modifier and Type Field Description private java.util.List<IDialect>TestExecutor. dialectsMethods in org.thymeleaf.testing.templateengine.engine that return types with arguments of type IDialect Modifier and Type Method Description java.util.List<IDialect>TestExecutor. getDialects()Method parameters in org.thymeleaf.testing.templateengine.engine with type arguments of type IDialect Modifier and Type Method Description voidTestExecutor. setDialects(java.util.List<? extends IDialect> dialects)
-