Uses of Interface
org.apache.commons.jexl3.JexlCache
-
Packages that use JexlCache Package Description org.apache.commons.jexl3 Provides a framework for evaluating JEXL expressions.org.apache.commons.jexl3.internal Provides utilities for introspection services. -
-
Uses of JexlCache in org.apache.commons.jexl3
Fields in org.apache.commons.jexl3 with type parameters of type JexlCache Modifier and Type Field Description private java.util.function.IntFunction<JexlCache<?,?>>JexlBuilder. cacheFactoryThe cache class factory.Methods in org.apache.commons.jexl3 that return types with arguments of type JexlCache Modifier and Type Method Description java.util.function.IntFunction<JexlCache<?,?>>JexlBuilder. cacheFactory()Gets the expression-cache factory the engine will use.Method parameters in org.apache.commons.jexl3 with type arguments of type JexlCache Modifier and Type Method Description JexlBuilderJexlBuilder. cacheFactory(java.util.function.IntFunction<JexlCache<?,?>> factory)Sets the expression-cache factory the engine will use. -
Uses of JexlCache in org.apache.commons.jexl3.internal
Classes in org.apache.commons.jexl3.internal that implement JexlCache Modifier and Type Class Description classSoftCache<K,V>A soft referenced cache.Fields in org.apache.commons.jexl3.internal declared as JexlCache Modifier and Type Field Description protected JexlCache<Source,java.lang.Object>Engine. cacheThe expression cache.(package private) JexlCache<Source,java.lang.Object>TemplateEngine. cacheThe TemplateExpression cache.Fields in org.apache.commons.jexl3.internal with type parameters of type JexlCache Modifier and Type Field Description private java.util.function.IntFunction<JexlCache<?,?>>MetaCache. factoryprivate java.lang.ref.ReferenceQueue<JexlCache<?,?>>MetaCache. queueprivate java.util.Set<java.lang.ref.Reference<JexlCache<?,?>>>MetaCache. referencesMethods in org.apache.commons.jexl3.internal that return JexlCache Modifier and Type Method Description protected JexlCache<Source,java.lang.Object>Engine. createCache(int capacity)Creates a new cache instance.(package private) <K,V>
JexlCache<K,V>MetaCache. createCache(int capacity)(package private) JexlCache<Source,java.lang.Object>Engine. getCache()Constructor parameters in org.apache.commons.jexl3.internal with type arguments of type JexlCache Constructor Description MetaCache(java.util.function.IntFunction<JexlCache<?,?>> factory)Constructs a MetaCache with the given cache factory.
-