Uses of Interface
com.github.javaparser.symbolsolver.cache.Cache
-
Packages that use Cache Package Description com.github.javaparser.symbolsolver.cache com.github.javaparser.symbolsolver.resolution.typesolvers -
-
Uses of Cache in com.github.javaparser.symbolsolver.cache
Classes in com.github.javaparser.symbolsolver.cache that implement Cache Modifier and Type Class Description class
GuavaCache<K,V>
This class is used to wrap a GuavaCache
.class
InMemoryCache<K,V>
A cache implementation that stores the information in memory.class
NoCache<K,V>
A cache implementation that does not store any information. -
Uses of Cache in com.github.javaparser.symbolsolver.resolution.typesolvers
Constructors in com.github.javaparser.symbolsolver.resolution.typesolvers with parameters of type Cache Constructor Description CombinedTypeSolver(Predicate<Exception> exceptionHandler, Iterable<TypeSolver> elements, Cache<String,SymbolReference<ResolvedReferenceTypeDeclaration>> typeCache)
Create a new instance ofCombinedTypeSolver
with a custom symbol cache.JavaParserTypeSolver(Path srcDir, JavaParser javaParser, Cache<Path,Optional<CompilationUnit>> parsedFilesCache, Cache<Path,List<CompilationUnit>> parsedDirectoriesCache, Cache<String,SymbolReference<ResolvedReferenceTypeDeclaration>> foundTypesCache)
Create aJavaParserTypeSolver
with a custom cache system.
-