Uses of Class
org.apache.commons.vfs2.Capability

Packages that use Capability
org.apache.commons.vfs2 The public VFS API. 
org.apache.commons.vfs2.impl The standard VFS implementation. 
org.apache.commons.vfs2.provider The File Provider API, and utility classes. 
org.apache.commons.vfs2.provider.bzip2 The BZIP2 File Provider 
org.apache.commons.vfs2.provider.compressed The compressed file provider 
org.apache.commons.vfs2.provider.ftp The FTP File Provider. 
org.apache.commons.vfs2.provider.gzip The GZIP File Provider 
org.apache.commons.vfs2.provider.http The HTTP File Provider 
org.apache.commons.vfs2.provider.jar The Jar File Provider. 
org.apache.commons.vfs2.provider.local The Local File Provider. 
org.apache.commons.vfs2.provider.ram The RAM File Provider. 
org.apache.commons.vfs2.provider.res The Resource File Provider 
org.apache.commons.vfs2.provider.sftp The SFTP Provider. 
org.apache.commons.vfs2.provider.tar The Tar File Provider. 
org.apache.commons.vfs2.provider.temp The Temporary Filespace Provider. 
org.apache.commons.vfs2.provider.url The Default File Provider, which wraps java.net.URL. 
org.apache.commons.vfs2.provider.webdav The WebDAV File Provider 
org.apache.commons.vfs2.provider.zip The Zip File Provider. 
 

Uses of Capability in org.apache.commons.vfs2
 

Methods in org.apache.commons.vfs2 that return Capability
static Capability Capability.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Capability[] Capability.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.apache.commons.vfs2 that return types with arguments of type Capability
 Collection<Capability> FileSystemManager.getProviderCapabilities(String scheme)
          Get the capabilities for a given scheme.
 

Methods in org.apache.commons.vfs2 with parameters of type Capability
 boolean FileSystem.hasCapability(Capability capability)
          Determines if this file system has a particular capability.
 

Uses of Capability in org.apache.commons.vfs2.impl
 

Methods in org.apache.commons.vfs2.impl that return types with arguments of type Capability
 Collection<Capability> DefaultFileSystemManager.getProviderCapabilities(String scheme)
          Get the capabilities for a given scheme.
 

Method parameters in org.apache.commons.vfs2.impl with type arguments of type Capability
protected  void VirtualFileSystem.addCapabilities(Collection<Capability> caps)
          Adds the capabilities of this file system.
 

Uses of Capability in org.apache.commons.vfs2.provider
 

Methods in org.apache.commons.vfs2.provider that return types with arguments of type Capability
 Collection<Capability> FileProvider.getCapabilities()
          Get the filesystem capabilities.
These are the same as on the filesystem, but available before the first filesystem was instanciated.
 

Methods in org.apache.commons.vfs2.provider with parameters of type Capability
 boolean AbstractFileSystem.hasCapability(Capability capability)
          Determines if this file system has a particular capability.
 

Method parameters in org.apache.commons.vfs2.provider with type arguments of type Capability
protected abstract  void AbstractFileSystem.addCapabilities(Collection<Capability> caps)
          Adds the capabilities of this file system.
 

Uses of Capability in org.apache.commons.vfs2.provider.bzip2
 

Fields in org.apache.commons.vfs2.provider.bzip2 with type parameters of type Capability
protected static Collection<Capability> Bzip2FileProvider.capabilities
          The provider's capabilities
 

Methods in org.apache.commons.vfs2.provider.bzip2 that return types with arguments of type Capability
 Collection<Capability> Bzip2FileProvider.getCapabilities()
           
 

Method parameters in org.apache.commons.vfs2.provider.bzip2 with type arguments of type Capability
protected  void Bzip2FileSystem.addCapabilities(Collection<Capability> caps)
           
 

Uses of Capability in org.apache.commons.vfs2.provider.compressed
 

Methods in org.apache.commons.vfs2.provider.compressed that return types with arguments of type Capability
abstract  Collection<Capability> CompressedFileFileProvider.getCapabilities()
           
 

Method parameters in org.apache.commons.vfs2.provider.compressed with type arguments of type Capability
protected abstract  void CompressedFileFileSystem.addCapabilities(Collection<Capability> caps)
          Returns the capabilities of this file system.
 

Uses of Capability in org.apache.commons.vfs2.provider.ftp
 

Methods in org.apache.commons.vfs2.provider.ftp that return types with arguments of type Capability
 Collection<Capability> FtpFileProvider.getCapabilities()
           
 

Method parameters in org.apache.commons.vfs2.provider.ftp with type arguments of type Capability
protected  void FtpFileSystem.addCapabilities(Collection<Capability> caps)
          Adds the capabilities of this file system.
 

Uses of Capability in org.apache.commons.vfs2.provider.gzip
 

Fields in org.apache.commons.vfs2.provider.gzip with type parameters of type Capability
protected static Collection<Capability> GzipFileProvider.capabilities
          Capabilities.
 

Methods in org.apache.commons.vfs2.provider.gzip that return types with arguments of type Capability
 Collection<Capability> GzipFileProvider.getCapabilities()
           
 

Method parameters in org.apache.commons.vfs2.provider.gzip with type arguments of type Capability
protected  void GzipFileSystem.addCapabilities(Collection<Capability> caps)
           
 

Uses of Capability in org.apache.commons.vfs2.provider.http
 

Methods in org.apache.commons.vfs2.provider.http that return types with arguments of type Capability
 Collection<Capability> HttpFileProvider.getCapabilities()
           
 

Method parameters in org.apache.commons.vfs2.provider.http with type arguments of type Capability
protected  void HttpFileSystem.addCapabilities(Collection<Capability> caps)
          Adds the capabilities of this file system.
 

Uses of Capability in org.apache.commons.vfs2.provider.jar
 

Methods in org.apache.commons.vfs2.provider.jar that return types with arguments of type Capability
 Collection<Capability> JarFileProvider.getCapabilities()
           
 

Method parameters in org.apache.commons.vfs2.provider.jar with type arguments of type Capability
protected  void JarFileSystem.addCapabilities(Collection<Capability> caps)
          Returns the capabilities of this file system.
 

Uses of Capability in org.apache.commons.vfs2.provider.local
 

Fields in org.apache.commons.vfs2.provider.local with type parameters of type Capability
static Collection<Capability> DefaultLocalFileProvider.capabilities
          The provider's capabilities.
 

Methods in org.apache.commons.vfs2.provider.local that return types with arguments of type Capability
 Collection<Capability> DefaultLocalFileProvider.getCapabilities()
           
 

Method parameters in org.apache.commons.vfs2.provider.local with type arguments of type Capability
protected  void LocalFileSystem.addCapabilities(Collection<Capability> caps)
          Returns the capabilities of this file system.
 

Uses of Capability in org.apache.commons.vfs2.provider.ram
 

Fields in org.apache.commons.vfs2.provider.ram with type parameters of type Capability
static Collection<Capability> RamFileProvider.capabilities
          The provider's capabilities.
 

Methods in org.apache.commons.vfs2.provider.ram that return types with arguments of type Capability
 Collection<Capability> RamFileProvider.getCapabilities()
           
 

Method parameters in org.apache.commons.vfs2.provider.ram with type arguments of type Capability
protected  void RamFileSystem.addCapabilities(Collection<Capability> caps)
           
 

Uses of Capability in org.apache.commons.vfs2.provider.res
 

Fields in org.apache.commons.vfs2.provider.res with type parameters of type Capability
protected static Collection<Capability> ResourceFileProvider.capabilities
          The provider's capabilities
 

Methods in org.apache.commons.vfs2.provider.res that return types with arguments of type Capability
 Collection<Capability> ResourceFileProvider.getCapabilities()
           
 

Uses of Capability in org.apache.commons.vfs2.provider.sftp
 

Fields in org.apache.commons.vfs2.provider.sftp with type parameters of type Capability
protected static Collection<Capability> SftpFileProvider.capabilities
          The provider's capabilities.
 

Methods in org.apache.commons.vfs2.provider.sftp that return types with arguments of type Capability
 Collection<Capability> SftpFileProvider.getCapabilities()
           
 

Method parameters in org.apache.commons.vfs2.provider.sftp with type arguments of type Capability
protected  void SftpFileSystem.addCapabilities(Collection<Capability> caps)
          Adds the capabilities of this file system.
 

Uses of Capability in org.apache.commons.vfs2.provider.tar
 

Fields in org.apache.commons.vfs2.provider.tar with type parameters of type Capability
protected static Collection<Capability> Tbz2FileProvider.capabilities
          The provider's capabilities
protected static Collection<Capability> TarFileProvider.capabilities
          The provider's capabilities
protected static Collection<Capability> TgzFileProvider.capabilities
          The provider's capabilities
 

Methods in org.apache.commons.vfs2.provider.tar that return types with arguments of type Capability
 Collection<Capability> Tbz2FileProvider.getCapabilities()
           
 Collection<Capability> TarFileProvider.getCapabilities()
           
 Collection<Capability> TgzFileProvider.getCapabilities()
           
 

Method parameters in org.apache.commons.vfs2.provider.tar with type arguments of type Capability
protected  void TarFileSystem.addCapabilities(Collection<Capability> caps)
          Returns the capabilities of this file system.
 

Uses of Capability in org.apache.commons.vfs2.provider.temp
 

Methods in org.apache.commons.vfs2.provider.temp that return types with arguments of type Capability
 Collection<Capability> TemporaryFileProvider.getCapabilities()
           
 

Uses of Capability in org.apache.commons.vfs2.provider.url
 

Fields in org.apache.commons.vfs2.provider.url with type parameters of type Capability
protected static Collection<Capability> UrlFileProvider.capabilities
          The provider's capabilities
 

Methods in org.apache.commons.vfs2.provider.url that return types with arguments of type Capability
 Collection<Capability> UrlFileProvider.getCapabilities()
           
 

Method parameters in org.apache.commons.vfs2.provider.url with type arguments of type Capability
protected  void UrlFileSystem.addCapabilities(Collection<Capability> caps)
          Returns the capabilities of this file system.
 

Uses of Capability in org.apache.commons.vfs2.provider.webdav
 

Fields in org.apache.commons.vfs2.provider.webdav with type parameters of type Capability
protected static Collection<Capability> WebdavFileProvider.capabilities
          The capabilities of the WebDAV provider
 

Methods in org.apache.commons.vfs2.provider.webdav that return types with arguments of type Capability
 Collection<Capability> WebdavFileProvider.getCapabilities()
           
 

Method parameters in org.apache.commons.vfs2.provider.webdav with type arguments of type Capability
protected  void WebdavFileSystem.addCapabilities(Collection<Capability> caps)
          Returns the capabilities of this file system.
 

Uses of Capability in org.apache.commons.vfs2.provider.zip
 

Fields in org.apache.commons.vfs2.provider.zip with type parameters of type Capability
protected static Collection<Capability> ZipFileProvider.capabilities
          The list of capabilities this provider supports
 

Methods in org.apache.commons.vfs2.provider.zip that return types with arguments of type Capability
 Collection<Capability> ZipFileProvider.getCapabilities()
           
 

Method parameters in org.apache.commons.vfs2.provider.zip with type arguments of type Capability
protected  void ZipFileSystem.addCapabilities(Collection<Capability> caps)
          Returns the capabilities of this file system.
 



Copyright © 2002-2012 The Apache Software Foundation. All Rights Reserved.