|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use VFile | |
|---|---|
| org.millscript.commons.vfs | This package provides the interface to the virtual filing system. |
| org.millscript.commons.vfs.alerts | This package contains alerts used by the virtual filesystem. |
| org.millscript.commons.vfs.mime | This package provides MIME type support for the virtual filesystem. |
| org.millscript.commons.vfs.mime.zip | This package provides the "application/x-zip" MIME type support for the virtual filesystem. |
| org.millscript.commons.vfs.protocols | This package provides URI scheme support for the virtual filesystem. |
| org.millscript.commons.vfs.protocols.file | This package provides the "file" URI scheme support for the virtual filesystem. |
| org.millscript.commons.vfs.protocols.ftp | This package provides the "ftp" URI scheme support for the virtual filesystem. |
| org.millscript.commons.vfs.protocols.http | This package provides the "http" URI scheme support for the virtual filesystem. |
| org.millscript.commons.vfs.util | This package provides additional utilities for the virtual filesystem. |
| Uses of VFile in org.millscript.commons.vfs |
|---|
| Classes in org.millscript.commons.vfs that implement VFile | |
|---|---|
class |
AbstractVFile<V extends VVolume>
This class provides the skeletal implementation of a virtual filesystem file, |
| Methods in org.millscript.commons.vfs that return VFile | |
|---|---|
VFile |
VFolder.checkVFile(java.lang.String segment)
Returns the entry for the child file with the specified name, but only if it exists and throws an exception otherwise. |
VFile |
VFolder.getVFile(java.lang.String segment)
Returns the entry for the child file with the specified name. |
VFile |
VFolder.resolveAsFile(java.lang.String path)
Resolves the specified path to a virtual file in this folder. |
VFile |
AbstractVFolder.resolveAsFile(java.lang.String path)
|
VFile |
VFS.resolveAsFile(java.net.URI uri)
|
VFile |
VFile.toLocal()
Returns this virtual file as a local entry, which may simply be this object. |
| Methods in org.millscript.commons.vfs that return types with arguments of type VFile | |
|---|---|
java.util.List<VFile> |
VFolder.listFiles()
Returns a list of all the child files in this folder. |
| Uses of VFile in org.millscript.commons.vfs.alerts |
|---|
| Methods in org.millscript.commons.vfs.alerts with parameters of type VFile | |
|---|---|
static org.millscript.commons.alert.Alert |
VCannotOpenEntryAlert.entryIsNotAFile(VFile file)
|
static org.millscript.commons.alert.Alert |
VCannotOpenEntryAlert.fileNotFound(VFile file)
|
| Uses of VFile in org.millscript.commons.vfs.mime |
|---|
| Methods in org.millscript.commons.vfs.mime that return VFile | |
|---|---|
protected VFile |
AbstractMIMEVVolume.getParentVFile()
|
VFile |
MIMETypeHandler.resolveAsFile(VFile file)
Resolves the specified VFile to a virtual file in a new virtual filesystem. |
| Methods in org.millscript.commons.vfs.mime with parameters of type VFile | |
|---|---|
protected abstract VFolder |
AbstractMIMEVVolume.makeRootVFolder(VFile sourceFile)
Constructs the root folder for this volume, with the specified parent folder and returns it. |
VFile |
MIMETypeHandler.resolveAsFile(VFile file)
Resolves the specified VFile to a virtual file in a new virtual filesystem. |
VFolder |
MIMETypeHandler.resolveAsFolder(VFile file)
Resolves the specified VFile to a virtual folder in a new virtual filesystem. |
VVolume |
MIMETypeHandler.resolveAsVolume(VFile file)
Resolves the specified VFile to a new virtual filesystem volume. |
| Uses of VFile in org.millscript.commons.vfs.mime.zip |
|---|
| Classes in org.millscript.commons.vfs.mime.zip that implement VFile | |
|---|---|
class |
ReadOnlyZipFile
This class implements a virtual filesystem file for a read-only zip file file. |
| Methods in org.millscript.commons.vfs.mime.zip that return VFile | |
|---|---|
VFile |
ZipMIMEHandler.resolveAsFile(VFile file)
|
| Methods in org.millscript.commons.vfs.mime.zip that return types with arguments of type VFile | |
|---|---|
java.util.List<VFile> |
ReadOnlyZipFolder.listFiles()
|
| Methods in org.millscript.commons.vfs.mime.zip with parameters of type VFile | |
|---|---|
protected VFolder |
ReadOnlyZipVolume.makeRootVFolder(VFile sourceFile)
|
VFile |
ZipMIMEHandler.resolveAsFile(VFile file)
|
VFolder |
ZipMIMEHandler.resolveAsFolder(VFile file)
|
VVolume |
ZipMIMEHandler.resolveAsVolume(VFile file)
|
| Uses of VFile in org.millscript.commons.vfs.protocols |
|---|
| Methods in org.millscript.commons.vfs.protocols that return VFile | |
|---|---|
VFile |
URISchemeHandler.resolveAsFile(java.net.URI uri)
Resolves the specified URI to a virtual file in a new virtual filesystem. |
| Uses of VFile in org.millscript.commons.vfs.protocols.file |
|---|
| Classes in org.millscript.commons.vfs.protocols.file that implement VFile | |
|---|---|
class |
LocalFile
This class implements a virtual filesystem file for a local filesystem file. |
| Methods in org.millscript.commons.vfs.protocols.file that return VFile | |
|---|---|
VFile |
FileSchemeHandler.resolveAsFile(java.net.URI uri)
|
| Methods in org.millscript.commons.vfs.protocols.file that return types with arguments of type VFile | |
|---|---|
java.util.List<VFile> |
LocalFolder.listFiles()
|
| Uses of VFile in org.millscript.commons.vfs.protocols.ftp |
|---|
| Classes in org.millscript.commons.vfs.protocols.ftp that implement VFile | |
|---|---|
class |
FtpFile
This class implements a virtual filesystem file for an FTP filesystem file. |
| Methods in org.millscript.commons.vfs.protocols.ftp that return VFile | |
|---|---|
VFile |
FtpSchemeHandler.resolveAsFile(java.net.URI uri)
|
| Methods in org.millscript.commons.vfs.protocols.ftp that return types with arguments of type VFile | |
|---|---|
java.util.List<VFile> |
FtpFolder.listFiles()
|
| Uses of VFile in org.millscript.commons.vfs.protocols.http |
|---|
| Classes in org.millscript.commons.vfs.protocols.http that implement VFile | |
|---|---|
class |
HttpFile
This class implements a virtual filesystem file for an HTTP filesystem file. |
| Methods in org.millscript.commons.vfs.protocols.http that return VFile | |
|---|---|
VFile |
HttpSchemeHandler.resolveAsFile(java.net.URI uri)
|
| Methods in org.millscript.commons.vfs.protocols.http that return types with arguments of type VFile | |
|---|---|
java.util.List<VFile> |
HttpFolder.listFiles()
|
| Uses of VFile in org.millscript.commons.vfs.util |
|---|
| Classes in org.millscript.commons.vfs.util that implement VFile | |
|---|---|
class |
ChrootFile
This class implements a virtual file for a Unix style chroot volume. |
class |
StandardConsoleFile
The standard system console as a virtual file. |
| Methods in org.millscript.commons.vfs.util that return VFile | |
|---|---|
VFile |
ChrootFolder.resolveAsFile(java.lang.String path)
|
static VFile |
Resolver.resolveAsFile(VFolder base,
java.lang.String path)
Resolves the specified path to a virtual file against the specified folder. |
VFile |
StandardConsoleFile.toLocal()
|
VFile |
ChrootFile.toLocal()
|
| Methods in org.millscript.commons.vfs.util that return types with arguments of type VFile | |
|---|---|
java.util.List<VFile> |
ChrootFolder.listFiles()
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||