Uses of Interface
org.apache.commons.vfs.FileName

Packages that use FileName
org.apache.commons.vfs The public VFS API. 
org.apache.commons.vfs.cache VFS File caching 
org.apache.commons.vfs.impl The standard VFS implementation. 
org.apache.commons.vfs.provider The File Provider API, and utility classes. 
org.apache.commons.vfs.provider.bzip2 The BZIP2 File Provider 
org.apache.commons.vfs.provider.compressed The compressed file provider 
org.apache.commons.vfs.provider.ftp The FTP File Provider. 
org.apache.commons.vfs.provider.gzip The GZIP File Provider 
org.apache.commons.vfs.provider.http The HTTP File Provider 
org.apache.commons.vfs.provider.jar The Jar File Provider. 
org.apache.commons.vfs.provider.local The Local File Provider. 
org.apache.commons.vfs.provider.mime   
org.apache.commons.vfs.provider.ram The RAM File Provider. 
org.apache.commons.vfs.provider.sftp The SFTP Provider. 
org.apache.commons.vfs.provider.smb The SMB/CIFS File Provider. 
org.apache.commons.vfs.provider.tar The Tar File Provider. 
org.apache.commons.vfs.provider.url The Default File Provider, which wraps java.net.URL. 
org.apache.commons.vfs.provider.webdav The WebDAV File Provider 
org.apache.commons.vfs.provider.zip The Zip File Provider. 
 

Uses of FileName in org.apache.commons.vfs
 

Methods in org.apache.commons.vfs that return FileName
 FileName FileObject.getName()
          Returns the name of this file.
 FileName FileName.getParent()
          Returns the file name of the parent of this file.
 FileName FileName.getRoot()
          find the root of the filesystem.
 FileName FileSystem.getRootName()
          Returns the name of the root file of this file system.
 FileName FileSystemManager.resolveName(FileName root, String name)
          Resolves a name, relative to this file name.
 FileName FileSystemManager.resolveName(FileName root, String name, NameScope scope)
          Resolves a name, relative to the "root" file name.
 FileName FileSystemManager.resolveURI(String uri)
          Resolve the uri to a filename.
 

Methods in org.apache.commons.vfs with parameters of type FileName
 FileObject FilesCache.getFile(FileSystem filesystem, FileName name)
          retrieve a file from the cache by its name.
 String FileName.getRelativeName(FileName name)
          Converts a file name to a relative name, relative to this file name.
 boolean FileName.isAncestor(FileName ancestor)
          Determines if another file name is an ancestor of this file name.
 boolean FileName.isDescendent(FileName descendent)
          Determines if another file name is a descendent of this file name.
 boolean FileName.isDescendent(FileName descendent, NameScope nameScope)
          Determines if another file name is a descendent of this file name.
 void FilesCache.removeFile(FileSystem filesystem, FileName name)
          removes a file from cache.
 FileObject FileSystem.resolveFile(FileName name)
          Finds a file in this file system.
 FileName FileSystemManager.resolveName(FileName root, String name)
          Resolves a name, relative to this file name.
 FileName FileSystemManager.resolveName(FileName root, String name, NameScope scope)
          Resolves a name, relative to the "root" file name.
 

Uses of FileName in org.apache.commons.vfs.cache
 

Methods in org.apache.commons.vfs.cache with parameters of type FileName
 FileObject NullFilesCache.getFile(FileSystem filesystem, FileName name)
           
 FileObject SoftRefFilesCache.getFile(FileSystem filesystem, FileName name)
           
 FileObject DefaultFilesCache.getFile(FileSystem filesystem, FileName name)
           
 FileObject LRUFilesCache.getFile(FileSystem filesystem, FileName name)
           
 void NullFilesCache.removeFile(FileSystem filesystem, FileName name)
           
 void SoftRefFilesCache.removeFile(FileSystem filesystem, FileName name)
           
 void DefaultFilesCache.removeFile(FileSystem filesystem, FileName name)
           
 void LRUFilesCache.removeFile(FileSystem filesystem, FileName name)
           
 

Uses of FileName in org.apache.commons.vfs.impl
 

Classes in org.apache.commons.vfs.impl that implement FileName
 class VirtualFileName
          A simple Filename to hold the scheme for to be created virtual filesytsem.
 

Methods in org.apache.commons.vfs.impl that return FileName
 FileName VirtualFileName.createName(String absPath, FileType type)
           
 FileName DecoratedFileObject.getName()
           
 FileName DefaultFileSystemManager.resolveName(FileName root, String path)
          Resolves a name, relative to the file.
 FileName DefaultFileSystemManager.resolveName(FileName base, String name, NameScope scope)
          Resolves a name, relative to the root.
 FileName DefaultFileSystemManager.resolveURI(String uri)
          Resolve the uri to a filename.
 

Methods in org.apache.commons.vfs.impl with parameters of type FileName
protected  FileObject VirtualFileSystem.createFile(FileName name)
          Creates a file object.
 FileName DefaultFileSystemManager.resolveName(FileName root, String path)
          Resolves a name, relative to the file.
 FileName DefaultFileSystemManager.resolveName(FileName base, String name, NameScope scope)
          Resolves a name, relative to the root.
 

Constructors in org.apache.commons.vfs.impl with parameters of type FileName
VirtualFileSystem(FileName rootName, FileSystemOptions fileSystemOptions)
           
 

Uses of FileName in org.apache.commons.vfs.provider
 

Classes in org.apache.commons.vfs.provider that implement FileName
 class AbstractFileName
          A default file name implementation.
 class GenericFileName
          A file name that represents a 'generic' URI, as per RFC 2396.
 class LayeredFileName
          A file name for layered files.
 class URLFileName
           
 

Methods in org.apache.commons.vfs.provider that return FileName
abstract  FileName AbstractFileName.createName(String absPath, FileType type)
          Factory method for creating name instances.
 FileName URLFileName.createName(String absPath, FileType type)
          Create a FileName.
 FileName LayeredFileName.createName(String path, FileType type)
          Create a FileName.
 FileName GenericFileName.createName(String absPath, FileType type)
          Create a FileName.
 FileName AbstractFileObject.getName()
          Returns the name of the file.
 FileName LayeredFileName.getOuterName()
          Returns the URI of the outer file.
 FileName AbstractFileName.getParent()
          Returns the name of the parent of the file.
 FileName AbstractFileName.getRoot()
          find the root of the filesystem.
 FileName AbstractFileSystem.getRootName()
          Returns the name of the root of this file system.
 FileName FileProvider.parseUri(FileName root, String uri)
          Parse the URI into a FileName.
 FileName AbstractFileProvider.parseUri(FileName base, String uri)
          Parses an absolute URI.
 FileName VfsComponentContext.parseURI(String uri)
          Parse a URI into a FileName.
 FileName URLFileNameParser.parseUri(VfsComponentContext context, FileName base, String filename)
           
 FileName FileNameParser.parseUri(VfsComponentContext context, FileName base, String filename)
          parses a String into a filename.
 FileName HostFileNameParser.parseUri(VfsComponentContext context, FileName base, String filename)
           
 FileName LayeredFileNameParser.parseUri(VfsComponentContext context, FileName base, String filename)
          Parse the base and name into a FileName.
 

Methods in org.apache.commons.vfs.provider with parameters of type FileName
 void DelegateFileObject.attachChild(FileName baseName, FileType type)
          Adds a child to this file.
protected  void AbstractFileObject.childrenChanged(FileName childName, FileType newType)
          Notifies the file that its children have changed.
protected abstract  FileObject AbstractFileSystem.createFile(FileName name)
          Creates a file object.
protected abstract  FileSystem AbstractOriginatingFileProvider.doCreateFileSystem(FileName rootName, FileSystemOptions fileSystemOptions)
          Creates a FileSystem.
protected  FileObject AbstractOriginatingFileProvider.findFile(FileName name, FileSystemOptions fileSystemOptions)
          Locates a file from its parsed URI.
protected  FileObject AbstractFileSystem.getFileFromCache(FileName name)
          Returns a cached file.
protected  FileSystem AbstractOriginatingFileProvider.getFileSystem(FileName rootName, FileSystemOptions fileSystemOptions)
          Returns the FileSystem associated with the specified root.
 String AbstractFileName.getRelativeName(FileName name)
          Converts a file name to a relative name, relative to this file name.
 boolean AbstractFileName.isAncestor(FileName ancestor)
          Determines if another file name is an ancestor of this file name.
 boolean AbstractFileName.isDescendent(FileName descendent)
          Determines if another file name is a descendent of this file name.
 boolean AbstractFileName.isDescendent(FileName descendent, NameScope scope)
          Determines if another file name is a descendent of this file name.
protected  void AbstractFileObject.onChildrenChanged(FileName child, FileType newType)
          Called when the children of this file change.
 FileName FileProvider.parseUri(FileName root, String uri)
          Parse the URI into a FileName.
 FileName AbstractFileProvider.parseUri(FileName base, String uri)
          Parses an absolute URI.
 FileName URLFileNameParser.parseUri(VfsComponentContext context, FileName base, String filename)
           
 FileName FileNameParser.parseUri(VfsComponentContext context, FileName base, String filename)
          parses a String into a filename.
 FileName HostFileNameParser.parseUri(VfsComponentContext context, FileName base, String filename)
           
 FileName LayeredFileNameParser.parseUri(VfsComponentContext context, FileName base, String filename)
          Parse the base and name into a FileName.
protected  void AbstractFileSystem.removeFileFromCache(FileName name)
          remove a cached file.
 FileObject AbstractFileSystem.resolveFile(FileName name)
          Finds a file in this file system.
 

Constructors in org.apache.commons.vfs.provider with parameters of type FileName
AbstractFileObject(FileName name, AbstractFileSystem fs)
           
AbstractFileSystem(FileName rootName, FileObject parentLayer, FileSystemOptions fileSystemOptions)
           
DelegateFileObject(FileName name, AbstractFileSystem fileSystem, FileObject file)
           
LayeredFileName(String scheme, FileName outerUri, String path, FileType type)
           
 

Uses of FileName in org.apache.commons.vfs.provider.bzip2
 

Methods in org.apache.commons.vfs.provider.bzip2 with parameters of type FileName
protected  FileObject Bzip2FileSystem.createFile(FileName name)
           
protected  FileSystem Bzip2FileProvider.createFileSystem(FileName name, FileObject file, FileSystemOptions fileSystemOptions)
           
 

Constructors in org.apache.commons.vfs.provider.bzip2 with parameters of type FileName
Bzip2FileObject(FileName name, FileObject container, CompressedFileFileSystem fs)
           
Bzip2FileSystem(FileName rootName, FileObject parentLayer, FileSystemOptions fileSystemOptions)
           
 

Uses of FileName in org.apache.commons.vfs.provider.compressed
 

Methods in org.apache.commons.vfs.provider.compressed with parameters of type FileName
protected abstract  FileObject CompressedFileFileSystem.createFile(FileName name)
          Creates a file object.
protected abstract  FileSystem CompressedFileFileProvider.createFileSystem(FileName name, FileObject file, FileSystemOptions fileSystemOptions)
           
 

Constructors in org.apache.commons.vfs.provider.compressed with parameters of type FileName
CompressedFileFileObject(FileName name, FileObject container, CompressedFileFileSystem fs)
           
CompressedFileFileSystem(FileName rootName, FileObject parentLayer, FileSystemOptions fileSystemOptions)
           
 

Uses of FileName in org.apache.commons.vfs.provider.ftp
 

Methods in org.apache.commons.vfs.provider.ftp with parameters of type FileName
protected  FileObject FtpFileSystem.createFile(FileName name)
          Creates a file object.
protected  FileSystem FtpFileProvider.doCreateFileSystem(FileName name, FileSystemOptions fileSystemOptions)
          Creates the filesystem.
protected  void FtpFileObject.onChildrenChanged(FileName child, FileType newType)
          Called when the children of this file change.
 

Constructors in org.apache.commons.vfs.provider.ftp with parameters of type FileName
FtpFileObject(FileName name, FtpFileSystem fileSystem, FileName rootName)
           
 

Uses of FileName in org.apache.commons.vfs.provider.gzip
 

Methods in org.apache.commons.vfs.provider.gzip with parameters of type FileName
protected  FileObject GzipFileSystem.createFile(FileName name)
           
protected  FileSystem GzipFileProvider.createFileSystem(FileName name, FileObject file, FileSystemOptions fileSystemOptions)
           
 

Constructors in org.apache.commons.vfs.provider.gzip with parameters of type FileName
GzipFileObject(FileName name, FileObject container, CompressedFileFileSystem fs)
           
GzipFileSystem(FileName rootName, FileObject parentLayer, FileSystemOptions fileSystemOptions)
           
 

Uses of FileName in org.apache.commons.vfs.provider.http
 

Methods in org.apache.commons.vfs.provider.http with parameters of type FileName
protected  FileObject HttpFileSystem.createFile(FileName name)
          Creates a file object.
protected  FileSystem HttpFileProvider.doCreateFileSystem(FileName name, FileSystemOptions fileSystemOptions)
          Creates a FileSystem.
 

Constructors in org.apache.commons.vfs.provider.http with parameters of type FileName
HttpFileObject(FileName name, HttpFileSystem fileSystem)
           
 

Uses of FileName in org.apache.commons.vfs.provider.jar
 

Methods in org.apache.commons.vfs.provider.jar with parameters of type FileName
protected  ZipFileObject JarFileSystem.createZipFileObject(FileName name, ZipEntry entry)
           
 

Constructors in org.apache.commons.vfs.provider.jar with parameters of type FileName
JarFileObject(FileName name, ZipEntry entry, JarFileSystem fs, boolean zipExists)
           
JarFileSystem(FileName rootName, FileObject file, FileSystemOptions fileSystemOptions)
           
 

Uses of FileName in org.apache.commons.vfs.provider.local
 

Classes in org.apache.commons.vfs.provider.local that implement FileName
 class LocalFileName
          A local file URI.
 class WindowsFileName
          A local file URI.
 

Methods in org.apache.commons.vfs.provider.local that return FileName
protected abstract  FileName LocalFileNameParser.createFileName(String scheme, String rootFile, String path, FileType type)
           
protected  FileName GenericFileNameParser.createFileName(String scheme, String rootFile, String path, FileType type)
           
protected  FileName WindowsFileNameParser.createFileName(String scheme, String rootFile, String path, FileType type)
           
 FileName WindowsFileName.createName(String path, FileType type)
          Factory method for creating name instances.
 FileName LocalFileName.createName(String path, FileType type)
          Factory method for creating name instances.
 FileName LocalFileNameParser.parseUri(VfsComponentContext context, FileName base, String filename)
           
 

Methods in org.apache.commons.vfs.provider.local with parameters of type FileName
protected  FileObject LocalFileSystem.createFile(FileName name)
          Creates a file object.
protected  FileSystem DefaultLocalFileProvider.doCreateFileSystem(FileName name, FileSystemOptions fileSystemOptions)
          Creates the filesystem.
 FileName LocalFileNameParser.parseUri(VfsComponentContext context, FileName base, String filename)
           
 

Constructors in org.apache.commons.vfs.provider.local with parameters of type FileName
LocalFile(LocalFileSystem fileSystem, String rootFile, FileName name)
          Creates a non-root file.
LocalFileSystem(FileName rootName, String rootFile, FileSystemOptions opts)
           
 

Uses of FileName in org.apache.commons.vfs.provider.mime
 

Methods in org.apache.commons.vfs.provider.mime with parameters of type FileName
protected  FileObject MimeFileSystem.createFile(FileName name)
          Creates a file object.
 

Constructors in org.apache.commons.vfs.provider.mime with parameters of type FileName
MimeFileObject(FileName name, javax.mail.Part part, AbstractFileSystem fileSystem)
           
MimeFileSystem(FileName rootName, FileObject parentLayer, FileSystemOptions fileSystemOptions)
           
 

Uses of FileName in org.apache.commons.vfs.provider.ram
 

Methods in org.apache.commons.vfs.provider.ram with parameters of type FileName
protected  FileObject RamFileSystem.createFile(FileName name)
           
protected  FileSystem RamFileProvider.doCreateFileSystem(FileName name, FileSystemOptions fileSystemOptions)
           
 

Constructors in org.apache.commons.vfs.provider.ram with parameters of type FileName
RamFileObject(FileName name, RamFileSystem fs)
           
RamFileSystem(FileName rootName, FileSystemOptions fileSystemOptions)
           
 

Uses of FileName in org.apache.commons.vfs.provider.sftp
 

Methods in org.apache.commons.vfs.provider.sftp with parameters of type FileName
protected  FileObject SftpFileSystem.createFile(FileName name)
          Creates a file object.
protected  FileSystem SftpFileProvider.doCreateFileSystem(FileName name, FileSystemOptions fileSystemOptions)
          Creates a FileSystem.
 

Constructors in org.apache.commons.vfs.provider.sftp with parameters of type FileName
SftpFileObject(FileName name, SftpFileSystem fileSystem)
           
 

Uses of FileName in org.apache.commons.vfs.provider.smb
 

Classes in org.apache.commons.vfs.provider.smb that implement FileName
 class SmbFileName
          An SMB URI.
 

Methods in org.apache.commons.vfs.provider.smb that return FileName
 FileName SmbFileName.createName(String path, FileType type)
          Factory method for creating name instances.
 FileName SmbFileNameParser.parseUri(VfsComponentContext context, FileName base, String filename)
           
 

Methods in org.apache.commons.vfs.provider.smb with parameters of type FileName
protected  FileObject SmbFileSystem.createFile(FileName name)
          Creates a file object.
protected  FileSystem SmbFileProvider.doCreateFileSystem(FileName name, FileSystemOptions fileSystemOptions)
          Creates the filesystem.
 FileName SmbFileNameParser.parseUri(VfsComponentContext context, FileName base, String filename)
           
 

Constructors in org.apache.commons.vfs.provider.smb with parameters of type FileName
SmbFileObject(FileName name, SmbFileSystem fileSystem)
           
SmbFileSystem(FileName rootName, FileSystemOptions fileSystemOptions)
           
 

Uses of FileName in org.apache.commons.vfs.provider.tar
 

Methods in org.apache.commons.vfs.provider.tar with parameters of type FileName
protected  void TarFileObject.attachChild(FileName childName)
          Attaches a child
protected  FileObject TarFileSystem.createFile(FileName name)
          Creates a file object.
protected  TarFileObject TarFileSystem.createTarFileObject(FileName name, org.apache.commons.vfs.provider.tar.TarEntry entry)
           
 

Constructors in org.apache.commons.vfs.provider.tar with parameters of type FileName
TarFileObject(FileName name, org.apache.commons.vfs.provider.tar.TarEntry entry, TarFileSystem fs, boolean tarExists)
           
TarFileSystem(FileName rootName, FileObject parentLayer, FileSystemOptions fileSystemOptions)
           
 

Uses of FileName in org.apache.commons.vfs.provider.url
 

Classes in org.apache.commons.vfs.provider.url that implement FileName
 class UrlFileName
          Created by IntelliJ IDEA.
 

Methods in org.apache.commons.vfs.provider.url that return FileName
 FileName UrlFileNameParser.parseUri(VfsComponentContext context, FileName base, String filename)
           
 

Methods in org.apache.commons.vfs.provider.url with parameters of type FileName
protected  FileObject UrlFileSystem.createFile(FileName name)
          Creates a file object.
protected  URL UrlFileObject.createURL(FileName name)
           
protected  boolean UrlFileNameParser.isUrlBased(FileName base, String filename)
          Guess is the given filename is a url with host or not.
 FileName UrlFileNameParser.parseUri(VfsComponentContext context, FileName base, String filename)
           
 

Constructors in org.apache.commons.vfs.provider.url with parameters of type FileName
UrlFileObject(UrlFileSystem fs, FileName fileName)
           
UrlFileSystem(FileName rootName, FileSystemOptions fileSystemOptions)
           
 

Uses of FileName in org.apache.commons.vfs.provider.webdav
 

Methods in org.apache.commons.vfs.provider.webdav with parameters of type FileName
protected  FileObject WebdavFileSystem.createFile(FileName name)
          Creates a file object.
protected  FileSystem WebdavFileProvider.doCreateFileSystem(FileName name, FileSystemOptions fileSystemOptions)
          Creates a FileSystem.
 

Constructors in org.apache.commons.vfs.provider.webdav with parameters of type FileName
WebdavFileObject(FileName name, WebdavFileSystem fileSystem)
           
 

Uses of FileName in org.apache.commons.vfs.provider.zip
 

Methods in org.apache.commons.vfs.provider.zip with parameters of type FileName
 void ZipFileObject.attachChild(FileName childName)
          Attaches a child
protected  FileObject ZipFileSystem.createFile(FileName name)
          Creates a file object.
protected  ZipFileObject ZipFileSystem.createZipFileObject(FileName name, ZipEntry entry)
           
 

Constructors in org.apache.commons.vfs.provider.zip with parameters of type FileName
ZipFileObject(FileName name, ZipEntry entry, ZipFileSystem fs, boolean zipExists)
           
ZipFileSystem(FileName rootName, FileObject parentLayer, FileSystemOptions fileSystemOptions)
           
 



Copyright © 2002-2011 Apache Software Foundation. All Rights Reserved.