Skip navigation links
TrueVFS 0.12.0
A B C D E F G H I J K L M N O P R S T U V W Z 

T

TApplication<E extends Exception> - Class in net.java.truevfs.access
A template class which aids in establishing the typical setup-work-sync life cycle of a TrueVFS application.
TApplication() - Constructor for class net.java.truevfs.access.TApplication
 
TAR_CHARSET - Static variable in class net.java.truevfs.comp.tardriver.TarDriver
The character set for entry names and comments, which is the default character set.
TarBZip2Driver - Class in net.java.truevfs.driver.tar.bzip2
An archive driver for BZIP2 compressed TAR files (TAR.BZIP2).
TarBZip2Driver() - Constructor for class net.java.truevfs.driver.tar.bzip2.TarBZip2Driver
 
TarBZip2DriverMapModifier - Class in net.java.truevfs.driver.tar.bzip2
Maps a file system driver for accessing the BZIP2 compressed TAR file format.
TarBZip2DriverMapModifier() - Constructor for class net.java.truevfs.driver.tar.bzip2.TarBZip2DriverMapModifier
 
TArchiveDetector - Class in net.java.truevfs.access
Detects a prospective archive file and declares its file system scheme by mapping its file name extension to an archive driver.
TArchiveDetector(String) - Constructor for class net.java.truevfs.access.TArchiveDetector
TArchiveDetector(Provider<Map<FsScheme, FsDriver>>, String) - Constructor for class net.java.truevfs.access.TArchiveDetector
Constructs a new TArchiveDetector by filtering the given driver provider for all canonicalized extensions in the extensions list.
TArchiveDetector(String, FsDriver) - Constructor for class net.java.truevfs.access.TArchiveDetector
TArchiveDetector(Provider<Map<FsScheme, FsDriver>>, String, FsDriver) - Constructor for class net.java.truevfs.access.TArchiveDetector
Constructs a new TArchiveDetector by decorating the configuration of provider with mappings for all canonicalized extensions in extensions to driver.
TArchiveDetector(Provider<Map<FsScheme, FsDriver>>, Object[][]) - Constructor for class net.java.truevfs.access.TArchiveDetector
Creates a new TArchiveDetector by decorating the configuration of provider with mappings for all entries in config.
TArchiveDetector(Provider<Map<FsScheme, FsDriver>>, Map<FsScheme, FsDriver>) - Constructor for class net.java.truevfs.access.TArchiveDetector
Constructs a new TArchiveDetector by decorating the given driver provider with mappings for all entries in config.
TarDriver - Class in net.java.truevfs.comp.tardriver
An archive driver for Tape Archive files (TAR).
TarDriver() - Constructor for class net.java.truevfs.comp.tardriver.TarDriver
 
TarDriverEntry - Class in net.java.truevfs.comp.tardriver
An entry in a TAR archive which implements the FsArchiveEntry interface.
TarDriverEntry(String) - Constructor for class net.java.truevfs.comp.tardriver.TarDriverEntry
 
TarDriverEntry(String, TarArchiveEntry) - Constructor for class net.java.truevfs.comp.tardriver.TarDriverEntry
 
TarDriverMapModifier - Class in net.java.truevfs.driver.tar
Maps a file system driver for accessing the TAR file format.
TarDriverMapModifier() - Constructor for class net.java.truevfs.driver.tar.TarDriverMapModifier
 
TarException - Exception in net.java.truevfs.comp.tardriver
Indicates that there is an issue when reading or writing a TAR file which is specific to the TAR file format.
TarException(String) - Constructor for exception net.java.truevfs.comp.tardriver.TarException
 
TarException(String, Throwable) - Constructor for exception net.java.truevfs.comp.tardriver.TarException
 
target() - Method in class net.java.truevfs.driver.http.HttpInputSocket
 
target() - Method in class net.java.truevfs.driver.http.HttpOutputSocket
 
TarGZipDriver - Class in net.java.truevfs.driver.tar.gzip
An archive driver for GZIP compressed TAR files (TAR.GZIP).
TarGZipDriver() - Constructor for class net.java.truevfs.driver.tar.gzip.TarGZipDriver
 
TarGZipDriverMapModifier - Class in net.java.truevfs.driver.tar.gzip
Maps a file system driver for accessing the GZIP compressed TAR file format.
TarGZipDriverMapModifier() - Constructor for class net.java.truevfs.driver.tar.gzip.TarGZipDriverMapModifier
 
TarInputService - Class in net.java.truevfs.comp.tardriver
An input service for reading TAR files.
TarInputService(FsModel, Source, TarDriver) - Constructor for class net.java.truevfs.comp.tardriver.TarInputService
 
TarOutputService - Class in net.java.truevfs.comp.tardriver
An output service for writing TAR files.
TarOutputService(FsModel, Sink, TarDriver) - Constructor for class net.java.truevfs.comp.tardriver.TarOutputService
 
TarXZDriver - Class in net.java.truevfs.driver.tar.xz
An archive driver for XZ compressed TAR files (TAR.XZ).
TarXZDriver() - Constructor for class net.java.truevfs.driver.tar.xz.TarXZDriver
 
TarXZDriverMapModifier - Class in net.java.truevfs.driver.tar.xz
Maps a file system driver for accessing the XZ compressed TAR file format.
TarXZDriverMapModifier() - Constructor for class net.java.truevfs.driver.tar.xz.TarXZDriverMapModifier
 
TConfig - Class in net.java.truevfs.access
A mutable container for configuration options with global or inheritable thread local scope.
TDecoratingFileSystemView - Class in net.java.truevfs.access.swing
A decorator for a file system view.
TDecoratingFileSystemView(FileSystemView) - Constructor for class net.java.truevfs.access.swing.TDecoratingFileSystemView
Creates a new decorating file system view.
TDecoratingFileView - Class in net.java.truevfs.access.swing
A decorator for a file view.
TDecoratingFileView(FileView) - Constructor for class net.java.truevfs.access.swing.TDecoratingFileView
Constructs a new decorating file view.
TFile - Class in net.java.truevfs.access
A replacement for the class File which provides transparent read/write access to archive files and their entries as if they were (virtual) directories and files.
TFile(File) - Constructor for class net.java.truevfs.access.TFile
Constructs a new TFile instance which wraps the given file.
TFile(File, TArchiveDetector) - Constructor for class net.java.truevfs.access.TFile
Constructs a new TFile instance which uses the given archive detector to scan its path name for prospective archive files.
TFile(String) - Constructor for class net.java.truevfs.access.TFile
Constructs a new TFile instance which scans its path name for prospective archive files using the current archive detector by calling TConfig.current().getArchiveDetector().
TFile(String, TArchiveDetector) - Constructor for class net.java.truevfs.access.TFile
Constructs a new TFile instance which uses the given archive detector to scan its path name for prospective archive files.
TFile(File, String) - Constructor for class net.java.truevfs.access.TFile
Constructs a new TFile instance which scans its path name for prospective archive files using the current archive detector by calling TConfig.current().getArchiveDetector().
TFile(File, String, TArchiveDetector) - Constructor for class net.java.truevfs.access.TFile
Constructs a new TFile instance which uses the given archive detector to scan its path name for prospective archive files.
TFile(String, String) - Constructor for class net.java.truevfs.access.TFile
Constructs a new TFile instance which scans its path name for prospective archive files using the current archive detector by calling TConfig.current().getArchiveDetector().
TFile(String, String, TArchiveDetector) - Constructor for class net.java.truevfs.access.TFile
Constructs a new TFile instance which uses the given archive detector to scan its path name for prospective archive files.
TFile(URI) - Constructor for class net.java.truevfs.access.TFile
Constructs a new TFile instance for the given uri.
TFile(URI, TArchiveDetector) - Constructor for class net.java.truevfs.access.TFile
Constructs a new TFile instance for the given uri and detector.
TFile(FsNodePath) - Constructor for class net.java.truevfs.access.TFile
Constructs a new TFile instance for the given path.
TFile(FsNodePath, TArchiveDetector) - Constructor for class net.java.truevfs.access.TFile
Constructs a new TFile instance for the given path and detector.
TFileChooser - Class in net.java.truevfs.access.swing
A custom JFileChooser which supports browsing archive files like (virtual) directories.
TFileChooser() - Constructor for class net.java.truevfs.access.swing.TFileChooser
 
TFileChooser(TFile) - Constructor for class net.java.truevfs.access.swing.TFileChooser
 
TFileChooser(TFileSystemView) - Constructor for class net.java.truevfs.access.swing.TFileChooser
 
TFileChooser(TFile, TFileSystemView) - Constructor for class net.java.truevfs.access.swing.TFileChooser
 
TFileComparator - Class in net.java.truevfs.access
Compares two files by their status and path name so that directories are always ordered before other files.
TFileComparator() - Constructor for class net.java.truevfs.access.TFileComparator
 
TFileInputStream - Class in net.java.truevfs.access
A replacement for the class FileInputStream for reading plain old files or entries in an archive file.
TFileInputStream(String) - Constructor for class net.java.truevfs.access.TFileInputStream
Constructs a new input stream for reading plain old files or entries in an archive file.
TFileInputStream(String, FsAccessOption...) - Constructor for class net.java.truevfs.access.TFileInputStream
Constructs a new input stream for reading plain old files or entries in an archive file.
TFileInputStream(File) - Constructor for class net.java.truevfs.access.TFileInputStream
Constructs a new input stream for reading plain old files or entries in an archive file.
TFileInputStream(File, FsAccessOption...) - Constructor for class net.java.truevfs.access.TFileInputStream
Constructs a new input stream for reading plain old files or entries in an archive file.
TFileInputStream(File, BitField<FsAccessOption>) - Constructor for class net.java.truevfs.access.TFileInputStream
Constructs a new input stream for reading plain old files or entries in an archive file.
TFileOutputStream - Class in net.java.truevfs.access
A replacement for the class FileOutputStream for writing plain old files or entries in an archive file.
TFileOutputStream(String) - Constructor for class net.java.truevfs.access.TFileOutputStream
Constructs a new output stream for writing plain old files or entries in an archive file.
TFileOutputStream(String, boolean) - Constructor for class net.java.truevfs.access.TFileOutputStream
Constructs a new output stream for writing plain old files or entries in an archive file.
TFileOutputStream(String, FsAccessOption...) - Constructor for class net.java.truevfs.access.TFileOutputStream
Constructs a new output stream for writing plain old files or entries in an archive file.
TFileOutputStream(File) - Constructor for class net.java.truevfs.access.TFileOutputStream
Constructs a new output stream for writing plain old files or entries in an archive file.
TFileOutputStream(File, boolean) - Constructor for class net.java.truevfs.access.TFileOutputStream
Constructs a new output stream for writing plain old files or entries in an archive file.
TFileOutputStream(File, FsAccessOption...) - Constructor for class net.java.truevfs.access.TFileOutputStream
Constructs a new output stream for writing plain old files or entries in an archive file.
TFileOutputStream(File, BitField<FsAccessOption>) - Constructor for class net.java.truevfs.access.TFileOutputStream
Constructs a new output stream for writing plain old files or entries in an archive file.
TFileReader - Class in net.java.truevfs.access
A replacement for the class FileReader for reading plain old files or entries in an archive file.
TFileReader(File) - Constructor for class net.java.truevfs.access.TFileReader
Constructs a new TFile reader.
TFileReader(File, Charset) - Constructor for class net.java.truevfs.access.TFileReader
Constructs a new TFile reader.
TFileReader(File, CharsetDecoder) - Constructor for class net.java.truevfs.access.TFileReader
Constructs a new TFile reader.
TFileSystem - Class in net.java.truevfs.access
A FileSystem implementation for use with NIO.2.
TFileSystemProvider - Class in net.java.truevfs.access
A FileSystemProvider implementation for use with NIO.2.
TFileSystemProvider.Parameter - Interface in net.java.truevfs.access
Keys for environment maps.
TFileSystemView - Class in net.java.truevfs.access.swing
A custom file system fsv required to browse archive files like (virtual) directories with a JFileChooser.
TFileSystemView() - Constructor for class net.java.truevfs.access.swing.TFileSystemView
 
TFileSystemView(FileSystemView) - Constructor for class net.java.truevfs.access.swing.TFileSystemView
 
TFileSystemView(FileSystemView, TArchiveDetector) - Constructor for class net.java.truevfs.access.swing.TFileSystemView
 
TFileTree - Class in net.java.truevfs.access.swing
A custom JTree to browse files and directories.
TFileTree() - Constructor for class net.java.truevfs.access.swing.TFileTree
Creates an empty TFileTree with no root.
TFileTree(TFile) - Constructor for class net.java.truevfs.access.swing.TFileTree
Creates a new TFileTree which traverses the given root root file.
TFileTree(TFileTreeModel) - Constructor for class net.java.truevfs.access.swing.TFileTree
Creates a new TFileTree which traverses the given TFileTreeModel.
TFileTreeModel - Class in net.java.truevfs.access.swing
A TreeModel which traverses TFile instances.
TFileTreeModel(TFile, FileFilter, Comparator<? super TFile>) - Constructor for class net.java.truevfs.access.swing.TFileTreeModel
Creates a new TFileTreeModel which browses the specified root file.
TFileView - Class in net.java.truevfs.access.swing
An archive enabled file view.
TFileView(FileView) - Constructor for class net.java.truevfs.access.swing.TFileView
Creates a new archive enabled file view.
TFileWriter - Class in net.java.truevfs.access
A replacement for the class FileWriter for writing plain old files or entries in an archive file.
TFileWriter(File) - Constructor for class net.java.truevfs.access.TFileWriter
Constructs a new TFile writer.
TFileWriter(File, boolean) - Constructor for class net.java.truevfs.access.TFileWriter
Constructs a new TFile writer.
TFileWriter(File, boolean, Charset) - Constructor for class net.java.truevfs.access.TFileWriter
Constructs a new TFile writer.
TFileWriter(File, boolean, CharsetEncoder) - Constructor for class net.java.truevfs.access.TFileWriter
Constructs a new TFile writer.
TNullFileView - Class in net.java.truevfs.access.swing
Extends FileView in order to make it instantiable.
TNullFileView() - Constructor for class net.java.truevfs.access.swing.TNullFileView
 
toAbsolutePath() - Method in class net.java.truevfs.access.TPath
 
toFile() - Method in class net.java.truevfs.access.TFile
 
toFile() - Method in class net.java.truevfs.access.TPath
Returns a new TFile object for this path.
toFile() - Method in interface net.java.truevfs.access.TRex
Returns a file representation of this object.
toHierarchicalUri() - Method in class net.java.truevfs.kernel.spec.FsMountPoint
Returns a URI which is recursively transformed from the URI of this mount point so that it's absolute and hierarchical.
toHierarchicalUri() - Method in class net.java.truevfs.kernel.spec.FsNodePath
Returns a URI which is recursively transformed from the URI of this path so that it's absolute and hierarchical.
toNonArchiveFile() - Method in class net.java.truevfs.access.TFile
Returns a file object for the same path name, but does not detect any archive file name patterns in the last path name segment.
toNonArchivePath() - Method in class net.java.truevfs.access.TPath
Returns a path object for the same path name, but does not detect any archive file name patterns in the last path name segment.
toPath() - Method in class net.java.truevfs.access.TFile
 
toPath() - Method in class net.java.truevfs.access.TPath
 
toPath() - Method in interface net.java.truevfs.access.TRex
Returns a path representation of this object.
toRealPath(LinkOption...) - Method in class net.java.truevfs.access.TPath
 
toString() - Method in enum net.java.truevfs.access.ExpertFeature.Level
 
toString() - Method in enum net.java.truevfs.access.ExpertFeature.Reason
 
toString() - Method in class net.java.truevfs.access.swing.TDecoratingFileSystemView
Returns a string representation of this object for debugging and logging purposes.
toString() - Method in class net.java.truevfs.access.swing.TDecoratingFileView
Returns a string representation of this object for debugging and logging purposes.
toString() - Method in class net.java.truevfs.access.TArchiveDetector
 
toString() - Method in class net.java.truevfs.access.TConfig
 
toString() - Method in class net.java.truevfs.access.TFile
 
toString() - Method in class net.java.truevfs.access.TPath
 
toString() - Method in class net.java.truevfs.comp.inst.InstrumentingCompositeDriver
 
toString() - Method in class net.java.truevfs.comp.tardriver.TarDriverEntry
Returns a string representation of this object for debugging and logging purposes.
toString() - Method in class net.java.truevfs.comp.zip.ZipEntry
Returns a string representation of this object for debugging and logging purposes.
toString() - Method in class net.java.truevfs.comp.zipdriver.AbstractZipDriverEntry
Returns a string representation of this object for debugging and logging purposes.
toString() - Method in class net.java.truevfs.kernel.spec.FsAbstractController
Returns a string representation of this object for debugging and logging purposes.
toString() - Method in class net.java.truevfs.kernel.spec.FsAbstractModel
Returns a string representation of this object for debugging and logging purposes.
toString() - Method in class net.java.truevfs.kernel.spec.FsAbstractNode
Returns a string representation of this object for logging and debugging purposes.
toString() - Method in class net.java.truevfs.kernel.spec.FsArchiveDriver
Returns a string representation of this object for debugging and logging purposes.
toString(FsArchiveEntry) - Static method in class net.java.truevfs.kernel.spec.FsArchiveEntries
Returns a string representation of this object for debugging and logging purposes.
toString() - Method in class net.java.truevfs.kernel.spec.FsDecoratingController
 
toString() - Method in class net.java.truevfs.kernel.spec.FsDecoratingManager
Returns a string representation of this object for debugging and logging purposes.
toString() - Method in class net.java.truevfs.kernel.spec.FsDecoratingModel
Returns a string representation of this object for debugging and logging purposes.
toString() - Method in class net.java.truevfs.kernel.spec.FsDriver
Returns a string representation of this object for debugging and logging purposes.
toString() - Method in class net.java.truevfs.kernel.spec.FsMountPoint
Equivalent to calling URI.toString() on FsMountPoint.getUri().
toString() - Method in class net.java.truevfs.kernel.spec.FsNodeName
Equivalent to calling URI.toString() on FsNodeName.getUri().
toString() - Method in class net.java.truevfs.kernel.spec.FsNodePath
Equivalent to calling URI.toString() on FsNodePath.getUri().
toString() - Method in class net.java.truevfs.kernel.spec.FsScheme
Returns the scheme as a string.
toURI() - Method in class net.java.truevfs.access.TFile
 
toUri() - Method in class net.java.truevfs.access.TPath
 
TPath - Class in net.java.truevfs.access
A Path implementation for use with NIO.2.
TPath(String, String...) - Constructor for class net.java.truevfs.access.TPath
Constructs a new path from the given path strings.
TPath(URI) - Constructor for class net.java.truevfs.access.TPath
Constructs a new path from the given hierarchical URI.
TPath(File) - Constructor for class net.java.truevfs.access.TPath
Constructs a new path from the given file.
TPath(Path) - Constructor for class net.java.truevfs.access.TPath
Constructs a new path from the given path.
TRex - Interface in net.java.truevfs.access
Defines common properties and operations of TFile and TPath.
TrueVFS - Enum in net.java.truevfs.samples.access
A comprehensive command line utility which allows you to work with entries in all supported archive files using Unix like commands (cat, cp, rm, mkdir, rmdir, ls etc.).
TVFS - Class in net.java.truevfs.access
Static utility methods for virtual file system operations with global scope.
Type0RaesParameters - Interface in net.java.truevfs.driver.zip.raes.crypto
The parameters of this interface are used with RAES type 0 files.
A B C D E F G H I J K L M N O P R S T U V W Z 
Skip navigation links
TrueVFS 0.12.0

Copyright © 2005–2018 Schlichtherle IT Services. All rights reserved.