Uses of Class
org.apache.commons.vfs.FileType

Packages that use FileType
org.apache.commons.vfs The public VFS API. 
org.apache.commons.vfs.cache   
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.compressed   
org.apache.commons.vfs.provider.ftp The FTP File Provider. 
org.apache.commons.vfs.provider.http   
org.apache.commons.vfs.provider.local The Local File Provider. 
org.apache.commons.vfs.provider.ram The RAM File Provider. 
org.apache.commons.vfs.provider.sftp The SFTP 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.zip The Zip File Provider. 
 

Uses of FileType in org.apache.commons.vfs
 

Fields in org.apache.commons.vfs declared as FileType
static FileType FileType.FILE
          A regular file.
static FileType FileType.FILE_OR_FOLDER
          A file or folder.
static FileType FileType.FOLDER
          A folder.
static FileType FileType.IMAGINARY
          A file that does not exist.
private  FileType FileTypeSelector.type
           
 

Methods in org.apache.commons.vfs that return FileType
 FileType FileObject.getType()
          Returns this file's type.
 FileType FileName.getType()
          Returns the requested or current type of this name.
 

Constructors in org.apache.commons.vfs with parameters of type FileType
FileTypeSelector(FileType type)
           
 

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

Methods in org.apache.commons.vfs.cache that return FileType
 FileType OnCallRefreshFileObject.getType()
           
 

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

Methods in org.apache.commons.vfs.impl that return FileType
 FileType DecoratedFileObject.getType()
           
 FileType SynchronizedFileObject.getType()
           
 

Methods in org.apache.commons.vfs.impl with parameters of type FileType
 FileName VirtualFileName.createName(java.lang.String absPath, FileType type)
           
 

Constructors in org.apache.commons.vfs.impl with parameters of type FileType
VirtualFileName(java.lang.String scheme, java.lang.String absPath, FileType type)
           
 

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

Fields in org.apache.commons.vfs.provider declared as FileType
private  FileType AbstractFileName.type
           
private  FileType AbstractFileObject.type
           
 

Methods in org.apache.commons.vfs.provider that return FileType
protected abstract  FileType AbstractFileObject.doGetType()
          Determines the type of this file.
protected  FileType DelegateFileObject.doGetType()
          Determines the type of the file, returns null if the file does not exist.
 FileType AbstractFileName.getType()
          Returns the requested or current type of this name.
 FileType AbstractFileObject.getType()
          Returns the file's type.
static FileType UriParser.normalisePath(java.lang.StringBuffer path)
          Normalises a path.
 

Methods in org.apache.commons.vfs.provider with parameters of type FileType
 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.
 FileName LayeredFileName.createName(java.lang.String path, FileType type)
           
 FileName GenericFileName.createName(java.lang.String absPath, FileType type)
           
abstract  FileName AbstractFileName.createName(java.lang.String absPath, FileType type)
          Factory method for creating name instances.
 FileName URLFileName.createName(java.lang.String absPath, FileType type)
           
protected  void AbstractFileObject.handleCreate(FileType newType)
          Called when this file is created.
protected  void AbstractFileObject.injectType(FileType fileType)
           
private  void DelegateFileObject.maybeTypeChanged(FileType oldType)
          Checks whether the file's type has changed, and fires the appropriate events.
private  void AbstractFileObject.notifyParent(FileName childName, FileType newType)
          Notify the parent of a change to its children, when a child is created or deleted.
protected  void AbstractFileObject.onChildrenChanged(FileName child, FileType newType)
          Called when the children of this file change.
private  void AbstractFileObject.setFileType(FileType type)
           
(package private)  void AbstractFileName.setType(FileType type)
          sets the type of this file e.g.
 

Constructors in org.apache.commons.vfs.provider with parameters of type FileType
AbstractFileName(java.lang.String scheme, java.lang.String absPath, FileType type)
           
GenericFileName(java.lang.String scheme, java.lang.String hostName, int port, int defaultPort, java.lang.String userName, java.lang.String password, java.lang.String path, FileType type)
           
LayeredFileName(java.lang.String scheme, FileName outerUri, java.lang.String path, FileType type)
           
URLFileName(java.lang.String scheme, java.lang.String hostName, int port, int defaultPort, java.lang.String userName, java.lang.String password, java.lang.String path, FileType type, java.lang.String queryString)
           
 

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

Methods in org.apache.commons.vfs.provider.compressed that return FileType
protected  FileType CompressedFileFileObject.doGetType()
          Returns the file's type.
 

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

Methods in org.apache.commons.vfs.provider.ftp that return FileType
protected  FileType FtpFileObject.doGetType()
          Determines the type of the file, returns null if the file does not exist.
 

Methods in org.apache.commons.vfs.provider.ftp with parameters of type FileType
protected  void FtpFileObject.onChildrenChanged(FileName child, FileType newType)
          Called when the children of this file change.
 

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

Methods in org.apache.commons.vfs.provider.http that return FileType
protected  FileType HttpFileObject.doGetType()
          Determines the type of this file.
 

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

Methods in org.apache.commons.vfs.provider.local that return FileType
protected  FileType LocalFile.doGetType()
          Returns the file's type.
 

Methods in org.apache.commons.vfs.provider.local with parameters of type FileType
protected  FileName GenericFileNameParser.createFileName(java.lang.String scheme, java.lang.String rootFile, java.lang.String path, FileType type)
           
protected abstract  FileName LocalFileNameParser.createFileName(java.lang.String scheme, java.lang.String rootFile, java.lang.String path, FileType type)
           
protected  FileName WindowsFileNameParser.createFileName(java.lang.String scheme, java.lang.String rootFile, java.lang.String path, FileType type)
           
 FileName WindowsFileName.createName(java.lang.String path, FileType type)
          Factory method for creating name instances.
 FileName LocalFileName.createName(java.lang.String path, FileType type)
          Factory method for creating name instances.
 

Constructors in org.apache.commons.vfs.provider.local with parameters of type FileType
LocalFileName(java.lang.String scheme, java.lang.String rootFile, java.lang.String path, FileType type)
           
WindowsFileName(java.lang.String scheme, java.lang.String rootFile, java.lang.String path, FileType type)
           
 

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

Fields in org.apache.commons.vfs.provider.ram declared as FileType
private  FileType RamFileData.type
          File Type
 

Methods in org.apache.commons.vfs.provider.ram that return FileType
protected  FileType RamFileObject.doGetType()
           
(package private)  FileType RamFileData.getType()
           
 

Methods in org.apache.commons.vfs.provider.ram with parameters of type FileType
protected  void RamFileObject.injectType(FileType fileType)
           
(package private)  void RamFileData.setType(FileType type)
           
 

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

Methods in org.apache.commons.vfs.provider.sftp that return FileType
protected  FileType SftpFileObject.doGetType()
          Determines the type of this file, returns null if the file does not exist.
 

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

Fields in org.apache.commons.vfs.provider.tar declared as FileType
private  FileType TarFileObject.type
           
 

Methods in org.apache.commons.vfs.provider.tar that return FileType
protected  FileType TarFileObject.doGetType()
          Returns the file's type.
 

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

Methods in org.apache.commons.vfs.provider.url that return FileType
protected  FileType UrlFileObject.doGetType()
          Determines the type of the file.
 

Constructors in org.apache.commons.vfs.provider.url with parameters of type FileType
UrlFileName(java.lang.String scheme, java.lang.String hostName, int port, int defaultPort, java.lang.String userName, java.lang.String password, java.lang.String path, FileType type, java.lang.String queryString)
           
 

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

Fields in org.apache.commons.vfs.provider.zip declared as FileType
private  FileType ZipFileObject.type
           
 

Methods in org.apache.commons.vfs.provider.zip that return FileType
protected  FileType ZipFileObject.doGetType()
          Returns the file's type.