Package | Description |
---|---|
net.java.truevfs.access |
Provides uniform, transparent, thread-safe, read/write access to archive
files as if they were virtual directories.
|
net.java.truevfs.comp.tardriver |
The archive driver family for TAR files.
|
net.java.truevfs.comp.zipdriver |
The archive driver family for ZIP files.
|
net.java.truevfs.driver.file |
Provides a file system driver for accessing the platform file system.
|
net.java.truevfs.driver.http |
Provides a file system driver for read-only access to the web.
|
net.java.truevfs.driver.jar |
Provides a file system driver for accessing the JAR file format.
|
net.java.truevfs.driver.odf |
Provides a file system driver for accessing the Open Document File format.
|
net.java.truevfs.driver.sfx |
Provides a file system driver for read-only access to the SelF eXtracting
ZIP file format, alias SFX.
|
net.java.truevfs.driver.tar |
Provides a file system driver for accessing the TAR file format.
|
net.java.truevfs.driver.tar.bzip2 |
Provides a file system driver for accessing the BZIP2 compressed TAR file
format.
|
net.java.truevfs.driver.tar.gzip |
Provides a file system driver for accessing the GZIP compressed TAR file
format.
|
net.java.truevfs.driver.tar.xz |
Provides a file system driver for accessing the XZ compressed TAR file
format.
|
net.java.truevfs.driver.zip |
Provides a file system driver for accessing the ZIP file format.
|
net.java.truevfs.driver.zip.raes |
Provides a file system driver for accessing the RAES encrypted ZIP file
format, alias ZIP.RAES or TZP.
|
net.java.truevfs.kernel.spec |
Defines the API for accessing the (federated virtual) file system space.
|
net.java.truevfs.kernel.spec.sl |
Provides singletons to locate service providers on the class path.
|
net.java.truevfs.kernel.spec.spi |
Provides abstract classes for locatable service providers.
|
Modifier and Type | Method and Description |
---|---|
Map<FsScheme,FsDriver> |
TArchiveDetector.get() |
Map<FsScheme,FsDriver> |
TArchiveDetector.getDrivers()
Returns the immutable map of file system drivers.
|
Constructor and Description |
---|
TArchiveDetector(javax.inject.Provider<Map<FsScheme,FsDriver>> provider,
String extensions,
FsDriver driver)
Constructs a new
TArchiveDetector by
decorating the configuration of provider with
mappings for all canonicalized extensions in extensions to
driver . |
TArchiveDetector(String extensions,
FsDriver driver)
Equivalent to
TArchiveDetector(TArchiveDetector.NULL, extensions, driver) . |
Constructor and Description |
---|
TArchiveDetector(javax.inject.Provider<Map<FsScheme,FsDriver>> provider,
Map<FsScheme,FsDriver> config)
Constructs a new
TArchiveDetector by decorating the given driver
provider with mappings for all entries in config . |
TArchiveDetector(javax.inject.Provider<Map<FsScheme,FsDriver>> provider,
Map<FsScheme,FsDriver> config)
Constructs a new
TArchiveDetector by decorating the given driver
provider with mappings for all entries in config . |
TArchiveDetector(javax.inject.Provider<Map<FsScheme,FsDriver>> provider,
Object[][] config)
Creates a new
TArchiveDetector by
decorating the configuration of provider with
mappings for all entries in config . |
TArchiveDetector(javax.inject.Provider<Map<FsScheme,FsDriver>> provider,
String extensions)
Constructs a new
TArchiveDetector by filtering the given driver
provider for all canonicalized extensions in the extensions list. |
TArchiveDetector(javax.inject.Provider<Map<FsScheme,FsDriver>> provider,
String extensions,
FsDriver driver)
Constructs a new
TArchiveDetector by
decorating the configuration of provider with
mappings for all canonicalized extensions in extensions to
driver . |
Modifier and Type | Class and Description |
---|---|
class |
TarDriver
An archive driver for Tape Archive files (TAR).
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractZipDriver<E extends AbstractZipDriverEntry>
An abstract archive driver for the ZIP file format.
|
class |
CheckedJarDriver
An archive driver for JAR files which checks the CRC32 value for all ZIP
entries in input archives.
|
class |
CheckedZipDriver
An archive driver for ZIP files which checks the CRC32 values for all
ZIP entries in input archives.
|
class |
JarDriver
An archive driver for Java Archive files (JAR).
|
class |
ZipDriver
An archive driver for ZIP files.
|
Modifier and Type | Class and Description |
---|---|
class |
FileDriver
A file system driver for the FILE scheme.
|
Modifier and Type | Method and Description |
---|---|
Map<FsScheme,FsDriver> |
FileDriverMapModifier.apply(Map<FsScheme,FsDriver> map) |
Modifier and Type | Method and Description |
---|---|
Map<FsScheme,FsDriver> |
FileDriverMapModifier.apply(Map<FsScheme,FsDriver> map) |
Modifier and Type | Class and Description |
---|---|
class |
HttpDriver
A file system driver for the HTTP(S) schemes.
|
Modifier and Type | Method and Description |
---|---|
Map<FsScheme,FsDriver> |
HttpDriverMapModifier.apply(Map<FsScheme,FsDriver> map) |
Modifier and Type | Method and Description |
---|---|
Map<FsScheme,FsDriver> |
HttpDriverMapModifier.apply(Map<FsScheme,FsDriver> map) |
Modifier and Type | Method and Description |
---|---|
Map<FsScheme,FsDriver> |
JarDriverMapModifier.apply(Map<FsScheme,FsDriver> map) |
Modifier and Type | Method and Description |
---|---|
Map<FsScheme,FsDriver> |
JarDriverMapModifier.apply(Map<FsScheme,FsDriver> map) |
Modifier and Type | Class and Description |
---|---|
class |
CheckedOdfDriver
An archive driver for ODF files which checks the CRC32 value for all ZIP
entries in input archives.
|
class |
OdfDriver
An archive driver for application archive files according to the Open
Document Format (ODF) Specification, V1.0 and later.
|
Modifier and Type | Method and Description |
---|---|
Map<FsScheme,FsDriver> |
OdfDriverMapModifier.apply(Map<FsScheme,FsDriver> map) |
Modifier and Type | Method and Description |
---|---|
Map<FsScheme,FsDriver> |
OdfDriverMapModifier.apply(Map<FsScheme,FsDriver> map) |
Modifier and Type | Class and Description |
---|---|
class |
CheckedReadOnlySfxDriver
An archive driver for SFX/EXE files which checks the CRC32 value for all
ZIP entries in input archives.
|
class |
ReadOnlySfxDriver
An archive driver which reads Self Executable (SFX/EXE) ZIP files,
but doesn't support to create or update them because this would spoil the
SFX code in its preamble.
|
Modifier and Type | Method and Description |
---|---|
Map<FsScheme,FsDriver> |
SfxDriverMapModifier.apply(Map<FsScheme,FsDriver> map) |
Modifier and Type | Method and Description |
---|---|
Map<FsScheme,FsDriver> |
SfxDriverMapModifier.apply(Map<FsScheme,FsDriver> map) |
Modifier and Type | Method and Description |
---|---|
Map<FsScheme,FsDriver> |
TarDriverMapModifier.apply(Map<FsScheme,FsDriver> map) |
Modifier and Type | Method and Description |
---|---|
Map<FsScheme,FsDriver> |
TarDriverMapModifier.apply(Map<FsScheme,FsDriver> map) |
Modifier and Type | Class and Description |
---|---|
class |
TarBZip2Driver
An archive driver for BZIP2 compressed TAR files (TAR.BZIP2).
|
Modifier and Type | Method and Description |
---|---|
Map<FsScheme,FsDriver> |
TarBZip2DriverMapModifier.apply(Map<FsScheme,FsDriver> map) |
Modifier and Type | Method and Description |
---|---|
Map<FsScheme,FsDriver> |
TarBZip2DriverMapModifier.apply(Map<FsScheme,FsDriver> map) |
Modifier and Type | Class and Description |
---|---|
class |
TarGZipDriver
An archive driver for GZIP compressed TAR files (TAR.GZIP).
|
Modifier and Type | Method and Description |
---|---|
Map<FsScheme,FsDriver> |
TarGZipDriverMapModifier.apply(Map<FsScheme,FsDriver> map) |
Modifier and Type | Method and Description |
---|---|
Map<FsScheme,FsDriver> |
TarGZipDriverMapModifier.apply(Map<FsScheme,FsDriver> map) |
Modifier and Type | Class and Description |
---|---|
class |
TarXZDriver
An archive driver for XZ compressed TAR files (TAR.XZ).
|
Modifier and Type | Method and Description |
---|---|
Map<FsScheme,FsDriver> |
TarXZDriverMapModifier.apply(Map<FsScheme,FsDriver> map) |
Modifier and Type | Method and Description |
---|---|
Map<FsScheme,FsDriver> |
TarXZDriverMapModifier.apply(Map<FsScheme,FsDriver> map) |
Modifier and Type | Method and Description |
---|---|
Map<FsScheme,FsDriver> |
ZipDriverMapModifier.apply(Map<FsScheme,FsDriver> map) |
Modifier and Type | Method and Description |
---|---|
Map<FsScheme,FsDriver> |
ZipDriverMapModifier.apply(Map<FsScheme,FsDriver> map) |
Modifier and Type | Class and Description |
---|---|
class |
ParanoidZipRaesDriver
A paranoid archive driver for RAES encrypted ZIP files.
|
class |
SafeZipRaesDriver
A safe archive driver for RAES encrypted ZIP files (ZIP.RAES).
|
class |
ZipRaesDriver
An abstract archive driver for RAES encrypted ZIP files which optionally
authenticates the cipher data of the input archive files presented to it.
|
Modifier and Type | Method and Description |
---|---|
Map<FsScheme,FsDriver> |
ZipRaesDriverMapModifier.apply(Map<FsScheme,FsDriver> map) |
Modifier and Type | Method and Description |
---|---|
Map<FsScheme,FsDriver> |
ZipRaesDriverMapModifier.apply(Map<FsScheme,FsDriver> map) |
Modifier and Type | Class and Description |
---|---|
class |
FsArchiveDriver<E extends FsArchiveEntry>
An abstract factory for components required for accessing archive files.
|
Modifier and Type | Method and Description |
---|---|
Map<FsScheme,FsDriver> |
FsSimpleCompositeDriver.get() |
Modifier and Type | Method and Description |
---|---|
FsModel |
FsDecoratingManager.newModel(FsDriver context,
FsMountPoint mountPoint,
FsModel parent) |
Constructor and Description |
---|
FsSimpleCompositeDriver(net.java.truecommons.services.Container<Map<FsScheme,FsDriver>> container)
Constructs a new simple meta driver which will query the given
provider for an appropriate file system driver for the scheme
of a given mount point. |
Modifier and Type | Method and Description |
---|---|
Map<FsScheme,FsDriver> |
FsDriverMapLocator.get() |
Modifier and Type | Method and Description |
---|---|
Map<FsScheme,FsDriver> |
FsDriverMapFactory.get()
Returns a new empty map for subsequent modification.
|
Copyright © 2005–2018 Schlichtherle IT Services. All rights reserved.