Uses of Interface
org.apache.commons.vfs2.FilesCache
-
Packages that use FilesCache Package Description org.apache.commons.vfs2 The public VFS API.org.apache.commons.vfs2.cache VFS File cachingorg.apache.commons.vfs2.impl The standard VFS implementation. -
-
Uses of FilesCache in org.apache.commons.vfs2
Methods in org.apache.commons.vfs2 that return FilesCache Modifier and Type Method Description FilesCache
FileSystemManager. getFilesCache()
Get the cache used to cache file objects. -
Uses of FilesCache in org.apache.commons.vfs2.cache
Classes in org.apache.commons.vfs2.cache that implement FilesCache Modifier and Type Class Description class
AbstractFilesCache
Abstract base class for FilesCache implementations.class
DefaultFilesCache
A simpleFilesCache
implementation.class
LRUFilesCache
This implementation caches every file usingLRUMap
.class
NullFilesCache
AFilesCache
implementation.class
SoftRefFilesCache
This implementation caches every file as long as it is strongly reachable by the java vm.class
WeakRefFilesCache
This implementation caches every file as long as it is strongly reachable by the java vm. -
Uses of FilesCache in org.apache.commons.vfs2.impl
Methods in org.apache.commons.vfs2.impl that return FilesCache Modifier and Type Method Description FilesCache
DefaultFileSystemManager. getFilesCache()
Returns the filesCache implementation used to cache files.Methods in org.apache.commons.vfs2.impl with parameters of type FilesCache Modifier and Type Method Description void
DefaultFileSystemManager. setFilesCache(FilesCache filesCache)
Sets the filesCache implementation used to cache files.
-