Uses of Class
org.apache.commons.vfs2.provider.AbstractFileName
Packages that use AbstractFileName
Package
Description
The standard VFS implementation.
The File Provider API, and utility classes.
The BZIP2 File Provider
The compressed file provider
The FTP File Provider.
The GZIP File Provider
The HTTP File Provider
The Jar File Provider.
The Local File Provider.
The RAM File Provider.
The SFTP Provider.
The Tar File Provider.
The Default File Provider, which wraps java.net.URL.
The Zip File Provider.
-
Uses of AbstractFileName in org.apache.commons.vfs2.impl
Subclasses of AbstractFileName in org.apache.commons.vfs2.implModifier and TypeClassDescriptionclass
A simple Filename to hold the scheme for to be created virtual filesytsem.Methods in org.apache.commons.vfs2.impl with parameters of type AbstractFileNameModifier and TypeMethodDescriptionprotected FileObject
VirtualFileSystem.createFile
(AbstractFileName name) Creates a file object.Constructors in org.apache.commons.vfs2.impl with parameters of type AbstractFileNameModifierConstructorDescriptionVirtualFileSystem
(AbstractFileName rootName, FileSystemOptions fileSystemOptions) -
Uses of AbstractFileName in org.apache.commons.vfs2.provider
Subclasses of AbstractFileName in org.apache.commons.vfs2.providerModifier and TypeClassDescriptionclass
A file name that represents a 'generic' URI, as per RFC 2396.class
A file name for layered files.class
A file name that represents URL.Methods in org.apache.commons.vfs2.provider with parameters of type AbstractFileNameModifier and TypeMethodDescriptionprotected abstract FileObject
AbstractFileSystem.createFile
(AbstractFileName name) Creates a file object.Constructors in org.apache.commons.vfs2.provider with parameters of type AbstractFileNameModifierConstructorDescriptionprotected
AbstractFileObject
(AbstractFileName name, AFS fs) DelegateFileObject
(AbstractFileName name, AFS fileSystem, FileObject file) -
Uses of AbstractFileName in org.apache.commons.vfs2.provider.bzip2
Methods in org.apache.commons.vfs2.provider.bzip2 with parameters of type AbstractFileNameModifier and TypeMethodDescriptionprotected FileObject
Bzip2FileSystem.createFile
(AbstractFileName name) Constructors in org.apache.commons.vfs2.provider.bzip2 with parameters of type AbstractFileNameModifierConstructorDescriptionprotected
Bzip2FileObject
(AbstractFileName name, FileObject container, Bzip2FileSystem fs) protected
Bzip2FileObject
(AbstractFileName name, FileObject container, CompressedFileFileSystem fs) Deprecated. -
Uses of AbstractFileName in org.apache.commons.vfs2.provider.compressed
Methods in org.apache.commons.vfs2.provider.compressed with parameters of type AbstractFileNameModifier and TypeMethodDescriptionprotected abstract FileObject
CompressedFileFileSystem.createFile
(AbstractFileName name) Creates a file object.Constructors in org.apache.commons.vfs2.provider.compressed with parameters of type AbstractFileNameModifierConstructorDescriptionprotected
CompressedFileFileObject
(AbstractFileName name, FileObject container, FS fs) -
Uses of AbstractFileName in org.apache.commons.vfs2.provider.ftp
Methods in org.apache.commons.vfs2.provider.ftp with parameters of type AbstractFileNameModifier and TypeMethodDescriptionprotected FileObject
FtpFileSystem.createFile
(AbstractFileName name) Creates a file object.Constructors in org.apache.commons.vfs2.provider.ftp with parameters of type AbstractFileNameModifierConstructorDescriptionprotected
FtpFileObject
(AbstractFileName name, FtpFileSystem fileSystem, FileName rootName) -
Uses of AbstractFileName in org.apache.commons.vfs2.provider.gzip
Methods in org.apache.commons.vfs2.provider.gzip with parameters of type AbstractFileNameModifier and TypeMethodDescriptionprotected FileObject
GzipFileSystem.createFile
(AbstractFileName name) Constructors in org.apache.commons.vfs2.provider.gzip with parameters of type AbstractFileNameModifierConstructorDescriptionprotected
GzipFileObject
(AbstractFileName name, FileObject container, CompressedFileFileSystem fs) Deprecated.protected
GzipFileObject
(AbstractFileName name, FileObject container, GzipFileSystem fs) -
Uses of AbstractFileName in org.apache.commons.vfs2.provider.http
Methods in org.apache.commons.vfs2.provider.http with parameters of type AbstractFileNameModifier and TypeMethodDescriptionprotected FileObject
HttpFileSystem.createFile
(AbstractFileName name) Creates a file object.Constructors in org.apache.commons.vfs2.provider.http with parameters of type AbstractFileNameModifierConstructorDescriptionprotected
HttpFileObject
(AbstractFileName name, FS fileSystem) protected
HttpFileObject
(AbstractFileName name, FS fileSystem, HttpFileSystemConfigBuilder builder) -
Uses of AbstractFileName in org.apache.commons.vfs2.provider.jar
Methods in org.apache.commons.vfs2.provider.jar with parameters of type AbstractFileNameModifier and TypeMethodDescriptionprotected ZipFileObject
JarFileSystem.createZipFileObject
(AbstractFileName name, ZipEntry entry) Constructors in org.apache.commons.vfs2.provider.jar with parameters of type AbstractFileNameModifierConstructorDescriptionprotected
JarFileObject
(AbstractFileName name, ZipEntry entry, JarFileSystem fs, boolean zipExists) protected
JarFileSystem
(AbstractFileName rootName, FileObject file, FileSystemOptions fileSystemOptions) -
Uses of AbstractFileName in org.apache.commons.vfs2.provider.local
Subclasses of AbstractFileName in org.apache.commons.vfs2.provider.localModifier and TypeClassDescriptionclass
A local file URI.class
A local file URI.Methods in org.apache.commons.vfs2.provider.local with parameters of type AbstractFileNameModifier and TypeMethodDescriptionprotected FileObject
LocalFileSystem.createFile
(AbstractFileName name) Creates a file object.Constructors in org.apache.commons.vfs2.provider.local with parameters of type AbstractFileNameModifierConstructorDescriptionprotected
LocalFile
(LocalFileSystem fileSystem, String rootFile, AbstractFileName name) Creates a non-root file. -
Uses of AbstractFileName in org.apache.commons.vfs2.provider.ram
Methods in org.apache.commons.vfs2.provider.ram with parameters of type AbstractFileNameModifier and TypeMethodDescriptionprotected FileObject
RamFileSystem.createFile
(AbstractFileName name) Constructors in org.apache.commons.vfs2.provider.ram with parameters of type AbstractFileName -
Uses of AbstractFileName in org.apache.commons.vfs2.provider.sftp
Methods in org.apache.commons.vfs2.provider.sftp with parameters of type AbstractFileNameModifier and TypeMethodDescriptionprotected FileObject
SftpFileSystem.createFile
(AbstractFileName name) Creates a file object.Constructors in org.apache.commons.vfs2.provider.sftp with parameters of type AbstractFileNameModifierConstructorDescriptionprotected
SftpFileObject
(AbstractFileName name, SftpFileSystem fileSystem) -
Uses of AbstractFileName in org.apache.commons.vfs2.provider.tar
Methods in org.apache.commons.vfs2.provider.tar with parameters of type AbstractFileNameModifier and TypeMethodDescriptionprotected FileObject
TarFileSystem.createFile
(AbstractFileName name) Creates a file object.protected TarFileObject
TarFileSystem.createTarFileObject
(AbstractFileName name, org.apache.commons.compress.archivers.tar.TarArchiveEntry entry) Constructors in org.apache.commons.vfs2.provider.tar with parameters of type AbstractFileNameModifierConstructorDescriptionprotected
TarFileObject
(AbstractFileName name, org.apache.commons.compress.archivers.tar.TarArchiveEntry entry, TarFileSystem fs, boolean tarExists) protected
TarFileSystem
(AbstractFileName rootName, FileObject parentLayer, FileSystemOptions fileSystemOptions) -
Uses of AbstractFileName in org.apache.commons.vfs2.provider.url
Subclasses of AbstractFileName in org.apache.commons.vfs2.provider.urlMethods in org.apache.commons.vfs2.provider.url with parameters of type AbstractFileNameModifier and TypeMethodDescriptionprotected FileObject
UrlFileSystem.createFile
(AbstractFileName name) Creates a file object.Constructors in org.apache.commons.vfs2.provider.url with parameters of type AbstractFileNameModifierConstructorDescriptionprotected
UrlFileObject
(UrlFileSystem fs, AbstractFileName fileName) -
Uses of AbstractFileName in org.apache.commons.vfs2.provider.zip
Methods in org.apache.commons.vfs2.provider.zip with parameters of type AbstractFileNameModifier and TypeMethodDescriptionprotected FileObject
ZipFileSystem.createFile
(AbstractFileName name) Creates a file object.protected ZipFileObject
ZipFileSystem.createZipFileObject
(AbstractFileName name, ZipEntry entry) Constructors in org.apache.commons.vfs2.provider.zip with parameters of type AbstractFileNameModifierConstructorDescriptionprotected
ZipFileObject
(AbstractFileName name, ZipEntry entry, ZipFileSystem fs, boolean zipExists) ZipFileSystem
(AbstractFileName rootName, FileObject parentLayer, FileSystemOptions fileSystemOptions)
Bzip2FileObject(AbstractFileName, FileObject, Bzip2FileSystem)
instead.