Uses of Interface
org.apache.commons.vfs2.FileSystem
-
-
Uses of FileSystem in org.apache.commons.vfs2
Fields in org.apache.commons.vfs2 with type parameters of type FileSystem Modifier and Type Field Description private java.lang.Class<? extends FileSystem>
FileSystemOptions.FileSystemOptionKey. fileSystemClass
The FileSystem classMethods in org.apache.commons.vfs2 that return FileSystem Modifier and Type Method Description FileSystem
FileObject. getFileSystem()
Returns the file system that contains this file.Methods in org.apache.commons.vfs2 that return types with arguments of type FileSystem Modifier and Type Method Description protected abstract java.lang.Class<? extends FileSystem>
FileSystemConfigBuilder. getConfigClass()
Gets the target of this configuration.Methods in org.apache.commons.vfs2 with parameters of type FileSystem Modifier and Type Method Description void
FilesCache. clear(FileSystem fileSystem)
Purges the entries corresponding to the FileSystem.void
FileSystemManager. closeFileSystem(FileSystem fileSystem)
Closes the given file system.FileObject
FilesCache. getFile(FileSystem fileSystem, FileName fileName)
Retrieves a FileObject from the cache by name.void
FilesCache. removeFile(FileSystem fileSystem, FileName name)
Removes a file from cache.Method parameters in org.apache.commons.vfs2 with type arguments of type FileSystem Modifier and Type Method Description (package private) <T> T
FileSystemOptions. getOption(java.lang.Class<? extends FileSystem> fileSystemClass, java.lang.String name)
(package private) boolean
FileSystemOptions. hasOption(java.lang.Class<? extends FileSystem> fileSystemClass, java.lang.String name)
(package private) void
FileSystemOptions. setOption(java.lang.Class<? extends FileSystem> fileSystemClass, java.lang.String name, java.lang.Object value)
Constructor parameters in org.apache.commons.vfs2 with type arguments of type FileSystem Constructor Description FileSystemOptionKey(java.lang.Class<? extends FileSystem> fileSystemClass, java.lang.String name)
-
Uses of FileSystem in org.apache.commons.vfs2.cache
Fields in org.apache.commons.vfs2.cache declared as FileSystem Modifier and Type Field Description private FileSystem
LRUFilesCache.MyLRUMap. filesystem
The FileSystemprivate FileSystem
FileSystemAndNameKey. fileSystem
The FileSystemFields in org.apache.commons.vfs2.cache with type parameters of type FileSystem Modifier and Type Field Description private java.util.concurrent.ConcurrentMap<FileSystem,java.util.concurrent.ConcurrentMap<FileName,FileObject>>
DefaultFilesCache. filesystemCache
The FileSystem cache.private java.util.concurrent.ConcurrentMap<FileSystem,java.util.Map<FileName,FileObject>>
LRUFilesCache. filesystemCache
The FileSystem cacheprivate java.util.Map<FileSystem,java.util.Map<FileName,java.lang.ref.Reference<FileObject>>>
SoftRefFilesCache. fileSystemCache
Methods in org.apache.commons.vfs2.cache that return FileSystem Modifier and Type Method Description (package private) FileSystem
FileSystemAndNameKey. getFileSystem()
Methods in org.apache.commons.vfs2.cache with parameters of type FileSystem Modifier and Type Method Description void
DefaultFilesCache. clear(FileSystem filesystem)
void
LRUFilesCache. clear(FileSystem filesystem)
void
NullFilesCache. clear(FileSystem filesystem)
void
SoftRefFilesCache. clear(FileSystem fileSystem)
private void
SoftRefFilesCache. close(FileSystem fileSystem)
FileObject
DefaultFilesCache. getFile(FileSystem filesystem, FileName name)
FileObject
LRUFilesCache. getFile(FileSystem filesystem, FileName name)
FileObject
NullFilesCache. getFile(FileSystem filesystem, FileName name)
FileObject
SoftRefFilesCache. getFile(FileSystem fileSystem, FileName fileName)
protected java.util.concurrent.ConcurrentMap<FileName,FileObject>
DefaultFilesCache. getOrCreateFilesystemCache(FileSystem filesystem)
protected java.util.Map<FileName,FileObject>
LRUFilesCache. getOrCreateFilesystemCache(FileSystem filesystem)
protected java.util.Map<FileName,java.lang.ref.Reference<FileObject>>
SoftRefFilesCache. getOrCreateFilesystemCache(FileSystem fileSystem)
void
DefaultFilesCache. removeFile(FileSystem filesystem, FileName name)
void
LRUFilesCache. removeFile(FileSystem filesystem, FileName name)
void
NullFilesCache. removeFile(FileSystem filesystem, FileName name)
void
SoftRefFilesCache. removeFile(FileSystem fileSystem, FileName fileName)
Constructors in org.apache.commons.vfs2.cache with parameters of type FileSystem Constructor Description FileSystemAndNameKey(FileSystem fileSystem, FileName fileName)
MyLRUMap(FileSystem filesystem, int size)
-
Uses of FileSystem in org.apache.commons.vfs2.impl
Classes in org.apache.commons.vfs2.impl that implement FileSystem Modifier and Type Class Description (package private) static class
DefaultFileSystemConfigBuilder.DefaultFileSystem
Dummy class that implements FileSystem.class
VirtualFileSystem
A logical file system, made up of set of junctions, or links, to files from other file systems.Methods in org.apache.commons.vfs2.impl that return FileSystem Modifier and Type Method Description FileSystem
DecoratedFileObject. getFileSystem()
Methods in org.apache.commons.vfs2.impl that return types with arguments of type FileSystem Modifier and Type Method Description protected java.lang.Class<? extends FileSystem>
DefaultFileSystemConfigBuilder. getConfigClass()
Methods in org.apache.commons.vfs2.impl with parameters of type FileSystem Modifier and Type Method Description void
DefaultFileSystemManager. _closeFileSystem(FileSystem fileSystem)
Closes the given file system.void
DefaultFileSystemManager. closeFileSystem(FileSystem fileSystem)
Closes the given file system.(package private) void
VirtualFileProvider. closeFileSystem(FileSystem fileSystem)
Close a VirtualFileSystem by removing it from the#components
list of this provider. -
Uses of FileSystem in org.apache.commons.vfs2.provider
Classes in org.apache.commons.vfs2.provider that implement FileSystem Modifier and Type Class Description class
AbstractFileSystem
A partialFileSystem
implementation.Fields in org.apache.commons.vfs2.provider with type parameters of type FileSystem Modifier and Type Field Description private java.util.Map<FileSystemKey,FileSystem>
AbstractFileProvider. fileSystemMap
The cached file systems.Methods in org.apache.commons.vfs2.provider that return FileSystem Modifier and Type Method Description protected abstract FileSystem
AbstractLayeredFileProvider. doCreateFileSystem(java.lang.String scheme, FileObject file, FileSystemOptions fileSystemOptions)
Creates a layered file system.protected abstract FileSystem
AbstractOriginatingFileProvider. doCreateFileSystem(FileName rootFileName, FileSystemOptions fileSystemOptions)
Creates aFileSystem
.protected FileSystem
AbstractFileProvider. findFileSystem(java.lang.Comparable<?> key, FileSystemOptions fileSystemOptions)
Locates a cached file system.FileSystem
AbstractFileObject. getFileSystem()
Returns the file system this file belongs to.protected FileSystem
AbstractOriginatingFileProvider. getFileSystem(FileName rootFileName, FileSystemOptions fileSystemOptions)
Returns the FileSystem associated with the specified root.Methods in org.apache.commons.vfs2.provider with parameters of type FileSystem Modifier and Type Method Description protected void
AbstractFileProvider. addFileSystem(java.lang.Comparable<?> key, FileSystem fs)
Adds a file system to those cached by this provider.void
AbstractFileProvider. closeFileSystem(FileSystem fileSystem)
Close the FileSystem. -
Uses of FileSystem in org.apache.commons.vfs2.provider.bzip2
Classes in org.apache.commons.vfs2.provider.bzip2 that implement FileSystem Modifier and Type Class Description class
Bzip2FileSystem
Filesytem to handle compressed files using the bzip2 method.Methods in org.apache.commons.vfs2.provider.bzip2 that return FileSystem Modifier and Type Method Description protected FileSystem
Bzip2FileProvider. createFileSystem(FileName name, FileObject file, FileSystemOptions fileSystemOptions)
-
Uses of FileSystem in org.apache.commons.vfs2.provider.compressed
Classes in org.apache.commons.vfs2.provider.compressed that implement FileSystem Modifier and Type Class Description class
CompressedFileFileSystem
A read-only file system for compressed files.Methods in org.apache.commons.vfs2.provider.compressed that return FileSystem Modifier and Type Method Description protected abstract FileSystem
CompressedFileFileProvider. createFileSystem(FileName name, FileObject file, FileSystemOptions fileSystemOptions)
protected FileSystem
CompressedFileFileProvider. doCreateFileSystem(java.lang.String scheme, FileObject file, FileSystemOptions fileSystemOptions)
Creates a layered file system. -
Uses of FileSystem in org.apache.commons.vfs2.provider.ftp
Classes in org.apache.commons.vfs2.provider.ftp that implement FileSystem Modifier and Type Class Description class
FtpFileSystem
An FTP file system.Methods in org.apache.commons.vfs2.provider.ftp that return FileSystem Modifier and Type Method Description protected FileSystem
FtpFileProvider. doCreateFileSystem(FileName name, FileSystemOptions fileSystemOptions)
Creates the file system.Methods in org.apache.commons.vfs2.provider.ftp that return types with arguments of type FileSystem Modifier and Type Method Description protected java.lang.Class<? extends FileSystem>
FtpFileSystemConfigBuilder. getConfigClass()
-
Uses of FileSystem in org.apache.commons.vfs2.provider.gzip
Classes in org.apache.commons.vfs2.provider.gzip that implement FileSystem Modifier and Type Class Description class
GzipFileSystem
A compressed file system using the Gzip method.Methods in org.apache.commons.vfs2.provider.gzip that return FileSystem Modifier and Type Method Description protected FileSystem
GzipFileProvider. createFileSystem(FileName name, FileObject file, FileSystemOptions fileSystemOptions)
-
Uses of FileSystem in org.apache.commons.vfs2.provider.http4
Classes in org.apache.commons.vfs2.provider.http4 that implement FileSystem Modifier and Type Class Description class
Http4FileSystem
http4 file system.Methods in org.apache.commons.vfs2.provider.http4 that return FileSystem Modifier and Type Method Description protected FileSystem
Http4FileProvider. doCreateFileSystem(FileName name, FileSystemOptions fileSystemOptions)
Methods in org.apache.commons.vfs2.provider.http4 that return types with arguments of type FileSystem Modifier and Type Method Description protected java.lang.Class<? extends FileSystem>
Http4FileSystemConfigBuilder. getConfigClass()
-
Uses of FileSystem in org.apache.commons.vfs2.provider.jar
Classes in org.apache.commons.vfs2.provider.jar that implement FileSystem Modifier and Type Class Description class
JarFileSystem
A read-only file system for Jar files.Methods in org.apache.commons.vfs2.provider.jar that return FileSystem Modifier and Type Method Description protected FileSystem
JarFileProvider. doCreateFileSystem(java.lang.String scheme, FileObject file, FileSystemOptions fileSystemOptions)
Creates a layered file system. -
Uses of FileSystem in org.apache.commons.vfs2.provider.local
Classes in org.apache.commons.vfs2.provider.local that implement FileSystem Modifier and Type Class Description class
LocalFileSystem
A local file system.Methods in org.apache.commons.vfs2.provider.local that return FileSystem Modifier and Type Method Description protected FileSystem
DefaultLocalFileProvider. doCreateFileSystem(FileName name, FileSystemOptions fileSystemOptions)
Creates the file system. -
Uses of FileSystem in org.apache.commons.vfs2.provider.ram
Classes in org.apache.commons.vfs2.provider.ram that implement FileSystem Modifier and Type Class Description class
RamFileSystem
A RAM File System.Methods in org.apache.commons.vfs2.provider.ram that return FileSystem Modifier and Type Method Description protected FileSystem
RamFileProvider. doCreateFileSystem(FileName name, FileSystemOptions fileSystemOptions)
Methods in org.apache.commons.vfs2.provider.ram that return types with arguments of type FileSystem Modifier and Type Method Description protected java.lang.Class<? extends FileSystem>
RamFileSystemConfigBuilder. getConfigClass()
Gets the target of this configuration. -
Uses of FileSystem in org.apache.commons.vfs2.provider.res
Methods in org.apache.commons.vfs2.provider.res that return types with arguments of type FileSystem Modifier and Type Method Description protected java.lang.Class<? extends FileSystem>
ResourceFileSystemConfigBuilder. getConfigClass()
Methods in org.apache.commons.vfs2.provider.res with parameters of type FileSystem Modifier and Type Method Description void
ResourceFileProvider. closeFileSystem(FileSystem filesystem)
-
Uses of FileSystem in org.apache.commons.vfs2.provider.sftp
Classes in org.apache.commons.vfs2.provider.sftp that implement FileSystem Modifier and Type Class Description class
SftpFileSystem
Represents the files on an SFTP server.Methods in org.apache.commons.vfs2.provider.sftp that return FileSystem Modifier and Type Method Description protected FileSystem
SftpFileProvider. doCreateFileSystem(FileName name, FileSystemOptions fileSystemOptions)
Creates aFileSystem
.Methods in org.apache.commons.vfs2.provider.sftp that return types with arguments of type FileSystem Modifier and Type Method Description protected java.lang.Class<? extends FileSystem>
SftpFileSystemConfigBuilder. getConfigClass()
-
Uses of FileSystem in org.apache.commons.vfs2.provider.tar
Classes in org.apache.commons.vfs2.provider.tar that implement FileSystem Modifier and Type Class Description class
TarFileSystem
A read-only file system for Tar files.Methods in org.apache.commons.vfs2.provider.tar that return FileSystem Modifier and Type Method Description protected FileSystem
TarFileProvider. doCreateFileSystem(java.lang.String scheme, FileObject file, FileSystemOptions fileSystemOptions)
Creates a layered file system. -
Uses of FileSystem in org.apache.commons.vfs2.provider.url
Classes in org.apache.commons.vfs2.provider.url that implement FileSystem Modifier and Type Class Description class
UrlFileSystem
A File system backed by Java's URL API. -
Uses of FileSystem in org.apache.commons.vfs2.provider.zip
Classes in org.apache.commons.vfs2.provider.zip that implement FileSystem Modifier and Type Class Description class
ZipFileSystem
A read-only file system for ZIP and JAR files.Methods in org.apache.commons.vfs2.provider.zip that return FileSystem Modifier and Type Method Description protected FileSystem
ZipFileProvider. doCreateFileSystem(java.lang.String scheme, FileObject file, FileSystemOptions fileSystemOptions)
Creates a layered file system.Methods in org.apache.commons.vfs2.provider.zip that return types with arguments of type FileSystem Modifier and Type Method Description protected java.lang.Class<? extends FileSystem>
ZipFileSystemConfigBuilder. getConfigClass()
-
Uses of FileSystem in org.apache.commons.vfs2.util
Fields in org.apache.commons.vfs2.util declared as FileSystem Modifier and Type Field Description private FileSystem
WeakRefFileListener. fs
-