Package org.apache.bcel.util
Class LruCacheClassPathRepository
java.lang.Object
org.apache.bcel.util.AbstractClassPathRepository
org.apache.bcel.util.LruCacheClassPathRepository
- All Implemented Interfaces:
Repository
Maintains a least-recently-used (LRU) cache of
JavaClass with maximum size cacheSize.
This repository supports a class path consisting of too many JAR files to handle in ClassPathRepository or
MemorySensitiveClassPathRepository without causing OutOfMemoryError.
- Since:
- 6.4.0
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidclear()Clears all entries from cache.Finds the class with the name provided, if the class isn't there, return NULL.voidremoveClass(JavaClass javaClass) Removes class from repositoryvoidstoreClass(JavaClass javaClass) Stores the provided class under "clazz.getClassName()"Methods inherited from class org.apache.bcel.util.AbstractClassPathRepository
getClassPath, loadClass, loadClass
-
Field Details
-
loadedClasses
-
-
Constructor Details
-
LruCacheClassPathRepository
-
-
Method Details
-
clear
public void clear()Description copied from interface:RepositoryClears all entries from cache.- Specified by:
clearin interfaceRepository- Specified by:
clearin classAbstractClassPathRepository
-
findClass
Description copied from interface:RepositoryFinds the class with the name provided, if the class isn't there, return NULL.- Specified by:
findClassin interfaceRepository- Specified by:
findClassin classAbstractClassPathRepository
-
removeClass
Description copied from interface:RepositoryRemoves class from repository- Specified by:
removeClassin interfaceRepository- Specified by:
removeClassin classAbstractClassPathRepository
-
storeClass
Description copied from interface:RepositoryStores the provided class under "clazz.getClassName()"- Specified by:
storeClassin interfaceRepository- Specified by:
storeClassin classAbstractClassPathRepository
-