|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use FileType | |
---|---|
org.apache.commons.vfs2 | The public VFS API. |
org.apache.commons.vfs2.cache | VFS File caching |
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.compressed | The compressed file provider |
org.apache.commons.vfs2.provider.ftp | The FTP File Provider. |
org.apache.commons.vfs2.provider.http | The HTTP 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.sftp | The SFTP Provider. |
org.apache.commons.vfs2.provider.tar | The Tar File 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 FileType in org.apache.commons.vfs2 |
---|
Methods in org.apache.commons.vfs2 that return FileType | |
---|---|
FileType |
FileObject.getType()
Returns this file's type. |
FileType |
FileName.getType()
Returns the requested or current type of this name. |
static FileType |
FileType.valueOf(String name)
Returns the enum constant of this type with the specified name. |
static FileType[] |
FileType.values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Constructors in org.apache.commons.vfs2 with parameters of type FileType | |
---|---|
FileTypeSelector(FileType type)
|
Uses of FileType in org.apache.commons.vfs2.cache |
---|
Methods in org.apache.commons.vfs2.cache that return FileType | |
---|---|
FileType |
OnCallRefreshFileObject.getType()
|
Uses of FileType in org.apache.commons.vfs2.impl |
---|
Methods in org.apache.commons.vfs2.impl that return FileType | |
---|---|
FileType |
DecoratedFileObject.getType()
|
FileType |
SynchronizedFileObject.getType()
|
Methods in org.apache.commons.vfs2.impl with parameters of type FileType | |
---|---|
FileName |
VirtualFileName.createName(String absPath,
FileType type)
|
Constructors in org.apache.commons.vfs2.impl with parameters of type FileType | |
---|---|
VirtualFileName(String scheme,
String absPath,
FileType type)
|
Uses of FileType in org.apache.commons.vfs2.provider |
---|
Methods in org.apache.commons.vfs2.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(StringBuilder path)
Normalises a path. |
Methods in org.apache.commons.vfs2.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. |
abstract FileName |
AbstractFileName.createName(String absPath,
FileType type)
Factory method for creating name instances. |
FileName |
GenericFileName.createName(String absPath,
FileType type)
Create a FileName. |
FileName |
URLFileName.createName(String absPath,
FileType type)
Create a FileName. |
FileName |
LayeredFileName.createName(String path,
FileType type)
Create a FileName. |
protected void |
AbstractFileObject.handleCreate(FileType newType)
Called when this file is created. |
protected void |
AbstractFileObject.injectType(FileType fileType)
|
protected void |
AbstractFileObject.onChildrenChanged(FileName child,
FileType newType)
Called when the children of this file change. |
Constructors in org.apache.commons.vfs2.provider with parameters of type FileType | |
---|---|
AbstractFileName(String scheme,
String absPath,
FileType type)
|
|
GenericFileName(String scheme,
String hostName,
int port,
int defaultPort,
String userName,
String password,
String path,
FileType type)
|
|
LayeredFileName(String scheme,
FileName outerUri,
String path,
FileType type)
|
|
URLFileName(String scheme,
String hostName,
int port,
int defaultPort,
String userName,
String password,
String path,
FileType type,
String queryString)
|
Uses of FileType in org.apache.commons.vfs2.provider.compressed |
---|
Methods in org.apache.commons.vfs2.provider.compressed that return FileType | |
---|---|
protected FileType |
CompressedFileFileObject.doGetType()
Returns the file's type. |
Uses of FileType in org.apache.commons.vfs2.provider.ftp |
---|
Methods in org.apache.commons.vfs2.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.vfs2.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.vfs2.provider.http |
---|
Methods in org.apache.commons.vfs2.provider.http that return FileType | |
---|---|
protected FileType |
HttpFileObject.doGetType()
Determines the type of this file. |
Uses of FileType in org.apache.commons.vfs2.provider.local |
---|
Methods in org.apache.commons.vfs2.provider.local that return FileType | |
---|---|
protected FileType |
LocalFile.doGetType()
Returns the file's type. |
Methods in org.apache.commons.vfs2.provider.local with parameters of type FileType | |
---|---|
protected abstract FileName |
LocalFileNameParser.createFileName(String scheme,
String rootFile,
String path,
FileType type)
|
protected FileName |
WindowsFileNameParser.createFileName(String scheme,
String rootFile,
String path,
FileType type)
|
protected FileName |
GenericFileNameParser.createFileName(String scheme,
String rootFile,
String path,
FileType type)
|
FileName |
LocalFileName.createName(String path,
FileType type)
Factory method for creating name instances. |
FileName |
WindowsFileName.createName(String path,
FileType type)
Factory method for creating name instances. |
Constructors in org.apache.commons.vfs2.provider.local with parameters of type FileType | |
---|---|
LocalFileName(String scheme,
String rootFile,
String path,
FileType type)
|
|
WindowsFileName(String scheme,
String rootFile,
String path,
FileType type)
|
Uses of FileType in org.apache.commons.vfs2.provider.ram |
---|
Methods in org.apache.commons.vfs2.provider.ram that return FileType | |
---|---|
protected FileType |
RamFileObject.doGetType()
|
Methods in org.apache.commons.vfs2.provider.ram with parameters of type FileType | |
---|---|
protected void |
RamFileObject.injectType(FileType fileType)
|
Uses of FileType in org.apache.commons.vfs2.provider.sftp |
---|
Methods in org.apache.commons.vfs2.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.vfs2.provider.tar |
---|
Methods in org.apache.commons.vfs2.provider.tar that return FileType | |
---|---|
protected FileType |
TarFileObject.doGetType()
Returns the file's type. |
Uses of FileType in org.apache.commons.vfs2.provider.url |
---|
Methods in org.apache.commons.vfs2.provider.url that return FileType | |
---|---|
protected FileType |
UrlFileObject.doGetType()
Determines the type of the file. |
Constructors in org.apache.commons.vfs2.provider.url with parameters of type FileType | |
---|---|
UrlFileName(String scheme,
String hostName,
int port,
int defaultPort,
String userName,
String password,
String path,
FileType type,
String queryString)
The constructor. |
Uses of FileType in org.apache.commons.vfs2.provider.webdav |
---|
Methods in org.apache.commons.vfs2.provider.webdav that return FileType | |
---|---|
protected FileType |
WebdavFileObject.doGetType()
Determines the type of this file. |
Uses of FileType in org.apache.commons.vfs2.provider.zip |
---|
Methods in org.apache.commons.vfs2.provider.zip that return FileType | |
---|---|
protected FileType |
ZipFileObject.doGetType()
Returns the file's type. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |