Uses of Interface
org.apache.commons.ognl.internal.Cache
-
Packages that use Cache Package Description org.apache.commons.ognl org.apache.commons.ognl.internal -
-
Uses of Cache in org.apache.commons.ognl
Fields in org.apache.commons.ognl declared as Cache Modifier and Type Field Description private Cache<java.lang.reflect.Constructor<?>,java.lang.Class<?>[]>
OgnlCache. _ctorParameterTypesCache
private Cache<GenericMethodParameterTypeCacheEntry,java.lang.Class<?>[]>
OgnlCache. _genericMethodParameterTypesCache
private Cache<PermissionCacheEntry,java.security.Permission>
OgnlCache. _invokePermissionCache
private Cache<java.lang.reflect.Method,MethodAccessEntryValue>
OgnlCache. _methodAccessCache
private Cache<DeclaredMethodCacheEntry,java.util.Map<java.lang.String,java.util.List<java.lang.reflect.Method>>>
OgnlCache. _methodCache
private Cache<java.lang.reflect.Method,java.lang.Class<?>[]>
OgnlCache. _methodParameterTypesCache
private Cache<java.lang.reflect.Method,java.lang.Boolean>
OgnlCache. _methodPermCache
-
Uses of Cache in org.apache.commons.ognl.internal
Subinterfaces of Cache in org.apache.commons.ognl.internal Modifier and Type Interface Description interface
ClassCache<V>
This is a highly specialized map for storing values keyed by Class objects.Classes in org.apache.commons.ognl.internal that implement Cache Modifier and Type Class Description class
ClassCacheImpl<V>
Implementation ofClassCache
.class
ConcurrentHashMapCache<K,V>
class
ConcurrentHashMapClassCache<T>
class
HashMapCache<K,V>
class
HashMapClassCache<T>
class
ReentrantReadWriteLockCache<K,V>
class
ReentrantReadWriteLockClassCache<T>
Methods in org.apache.commons.ognl.internal that return Cache Modifier and Type Method Description <K,V>
Cache<K,V>CacheFactory. createCache(CacheEntryFactory<K,V> entryFactory)
<K,V>
Cache<K,V>ConcurrentHashMapCacheFactory. createCache(CacheEntryFactory<K,V> entryFactory)
<K,V>
Cache<K,V>HashMapCacheFactory. createCache(CacheEntryFactory<K,V> entryFactory)
<K,V>
Cache<K,V>ReentrantReadWriteLockCacheFactory. createCache(CacheEntryFactory<K,V> entryFactory)
-