Uses of Interface
org.thymeleaf.cache.ICache
-
Packages that use ICache Package Description org.thymeleaf.cache org.thymeleaf.engine org.thymeleaf.standard.expression org.thymeleaf.testing.templateengine.engine.cache -
-
Uses of ICache in org.thymeleaf.cache
Classes in org.thymeleaf.cache that implement ICache Modifier and Type Class Description classStandardCache<K,V>Fields in org.thymeleaf.cache declared as ICache Modifier and Type Field Description private ICache<ExpressionCacheKey,java.lang.Object>AbstractCacheManager. expressionCacheprivate ICache<TemplateCacheKey,TemplateModel>AbstractCacheManager. templateCacheMethods in org.thymeleaf.cache that return ICache Modifier and Type Method Description ICache<ExpressionCacheKey,java.lang.Object>AbstractCacheManager. getExpressionCache()ICache<ExpressionCacheKey,java.lang.Object>ICacheManager. getExpressionCache()Returns the cache of expression evaluation artifacts.<K,V>
ICache<K,V>AbstractCacheManager. getSpecificCache(java.lang.String name)<K,V>
ICache<K,V>ICacheManager. getSpecificCache(java.lang.String name)Returns a specific (non-default) cache, by its name.ICache<TemplateCacheKey,TemplateModel>AbstractCacheManager. getTemplateCache()ICache<TemplateCacheKey,TemplateModel>ICacheManager. getTemplateCache()Returns the cache of parsed templates.protected abstract ICache<ExpressionCacheKey,java.lang.Object>AbstractCacheManager. initializeExpressionCache()protected ICache<ExpressionCacheKey,java.lang.Object>StandardCacheManager. initializeExpressionCache()protected abstract ICache<TemplateCacheKey,TemplateModel>AbstractCacheManager. initializeTemplateCache()protected ICache<TemplateCacheKey,TemplateModel>StandardCacheManager. initializeTemplateCache() -
Uses of ICache in org.thymeleaf.engine
Fields in org.thymeleaf.engine declared as ICache Modifier and Type Field Description private ICache<TemplateCacheKey,TemplateModel>TemplateManager. templateCache -
Uses of ICache in org.thymeleaf.standard.expression
Methods in org.thymeleaf.standard.expression with parameters of type ICache Modifier and Type Method Description static java.lang.ObjectOGNLShortcutExpression. getArrayProperty(ICache<ExpressionCacheKey,java.lang.Object> expressionCache, java.lang.String propertyName, java.lang.Object[] array)static java.lang.ObjectOGNLShortcutExpression. getEnumerationProperty(ICache<ExpressionCacheKey,java.lang.Object> expressionCache, java.lang.String propertyName, java.util.Enumeration enumeration)static java.lang.ObjectOGNLShortcutExpression. getIteratorProperty(ICache<ExpressionCacheKey,java.lang.Object> expressionCache, java.lang.String propertyName, java.util.Iterator<?> iterator)static java.lang.ObjectOGNLShortcutExpression. getListProperty(ICache<ExpressionCacheKey,java.lang.Object> expressionCache, java.lang.String propertyName, java.util.List<?> list)private static java.lang.ObjectOGNLShortcutExpression. getObjectProperty(ICache<ExpressionCacheKey,java.lang.Object> expressionCache, java.lang.String propertyName, java.lang.Object target)static java.lang.ObjectOGNLShortcutExpression. getSetProperty(ICache<ExpressionCacheKey,java.lang.Object> expressionCache, java.lang.String propertyName, java.util.Set<?> set) -
Uses of ICache in org.thymeleaf.testing.templateengine.engine.cache
Classes in org.thymeleaf.testing.templateengine.engine.cache that implement ICache Modifier and Type Class Description classTestCache<K,V>Fields in org.thymeleaf.testing.templateengine.engine.cache declared as ICache Modifier and Type Field Description private ICache<K,V>TestCache. cacheMethods in org.thymeleaf.testing.templateengine.engine.cache that return ICache Modifier and Type Method Description ICache<ExpressionCacheKey,java.lang.Object>TestCacheManager. getExpressionCache()<K,V>
ICache<K,V>TestCacheManager. getSpecificCache(java.lang.String name)ICache<TemplateCacheKey,TemplateModel>TestCacheManager. getTemplateCache()Constructors in org.thymeleaf.testing.templateengine.engine.cache with parameters of type ICache Constructor Description TestCache(ICache<K,V> cache)
-