- bgzfFileCharSink(File) - Static method in class org.dishevelled.compress.Sinks
-
Create and return a new block compressed gzip (BGZF) char sink for the specified file.
- bgzfFileCharSource(File) - Static method in class org.dishevelled.compress.Sources
-
Create and return a new block compressed gzip (BGZF) char source for the specified file.
- bgzfFileReader(File) - Static method in class org.dishevelled.compress.Readers
-
Create and return a new buffered reader for the specified block compressed gzip (BGZF) compressed file.
- bgzfInputStreamCharSource(InputStream) - Static method in class org.dishevelled.compress.Sources
-
Create and return a new block compressed gzip (BGZF) char source for the specified input stream.
- bgzfInputStreamReader(InputStream) - Static method in class org.dishevelled.compress.Readers
-
Create and return a new buffered reader for the specified block compressed gzip (BGZF) compressed input stream.
- bgzfOutputStreamCharSink(OutputStream) - Static method in class org.dishevelled.compress.Sinks
-
Create and return a new block compressed gzip (BGZF) char sink for the specified output stream.
- bgzfOutputStreamWriter(OutputStream) - Static method in class org.dishevelled.compress.Writers
-
Create and return a new buffered print writer with bgzf compression for the specified output stream.
- BgzfUtils - Class in org.dishevelled.compress
-
Utility code for the block compressed gzip (BGZF) compression format.
- bzip2FileCharSink(File, boolean) - Static method in class org.dishevelled.compress.Sinks
-
Create and return a new bzip2 compressed char sink for the specified file.
- bzip2FileCharSource(File) - Static method in class org.dishevelled.compress.Sources
-
Create and return a new bzip2 compressed char source for the specified file.
- bzip2FileReader(File) - Static method in class org.dishevelled.compress.Readers
-
Create and return a new buffered reader for the specified bzip2 compressed file.
- bzip2InputStreamCharSource(InputStream) - Static method in class org.dishevelled.compress.Sources
-
Create and return a new bzip2 compressed char source for the specified input stream.
- bzip2InputStreamReader(InputStream) - Static method in class org.dishevelled.compress.Readers
-
Create and return a new buffered reader for the specified bzip2 compressed input stream.
- bzip2OutputStreamCharSink(OutputStream) - Static method in class org.dishevelled.compress.Sinks
-
Create and return a new bzip2 compressed char sink for the specified output stream.
- bzip2OutputStreamWriter(OutputStream) - Static method in class org.dishevelled.compress.Writers
-
Create and return a new buffered print writer with bzip2 compression for the specified output stream.
- charSink(File) - Static method in class org.dishevelled.compress.Sinks
-
Create and return a new char sink with support for bgzf, gzip, or bzip2 compression for the specified file
or stdout if the file is null.
- charSink(File, boolean) - Static method in class org.dishevelled.compress.Sinks
-
Create and return a new char sink with support for bgzf, gzip, or bzip2 compression for the specified file
or stdout if the file is null.
- charSink(File, Charset, boolean) - Static method in class org.dishevelled.compress.Sinks
-
Create and return a new char sink with support for bgzf, gzip, or bzip2 compression for the specified file
or stdout if the file is null.
- charSource(File) - Static method in class org.dishevelled.compress.Sources
-
Create and return a new char source with support for bgzf, gzip, or bzip2 compression for the specified file
or stdin if the file is null.
- charSource(File, Charset) - Static method in class org.dishevelled.compress.Sources
-
Create and return a new char source with support for bgzf, gzip, or bzip2 compression for the specified file
or stdin if the file is null.
- Compress - Class in org.dishevelled.compress
-
Compression utility methods.
- compressedFileReader(File) - Static method in class org.dishevelled.compress.Readers
-
Create and return a new buffered reader for the specified compressed file,
autodetecting the compression type from the first few bytes of the file.
- compressedInputStreamCharSource(InputStream) - Static method in class org.dishevelled.compress.Sources
-
Create and return a new char source for the specified compressed input stream,
autodetecting the compression type from the first few bytes of the stream.
- compressedInputStreamReader(InputStream) - Static method in class org.dishevelled.compress.Readers
-
Create and return a new buffered reader for the specified compressed input stream,
autodetecting the compression type from the first few bytes of the stream.
- inputStreamCharSource(InputStream) - Static method in class org.dishevelled.compress.Sources
-
Create and return a new char source for the specified input stream.
- inputStreamReader(InputStream) - Static method in class org.dishevelled.compress.Readers
-
Create and return a new buffered reader for the specified input stream.
- isBgzfFile(File) - Static method in class org.dishevelled.compress.Compress
-
Return true if the specified file is a block compressed gzip (BGZF) file.
- isBgzfFilename(String) - Static method in class org.dishevelled.compress.Compress
-
Return true if the specified file is a block compressed gzip (BGZF) file name.
- isBgzfInputStream(InputStream) - Static method in class org.dishevelled.compress.Compress
-
Return true if the specified file is a block compressed gzip (BGZF) input stream.
- isBzip2File(File) - Static method in class org.dishevelled.compress.Compress
-
Return true if the specified file is a bzip2 file.
- isBzip2Filename(String) - Static method in class org.dishevelled.compress.Compress
-
Return true if the specified file is a bzip2 file name.
- isBzip2InputStream(InputStream) - Static method in class org.dishevelled.compress.Compress
-
Return true if the specified file is a bzip2 input stream.
- isCompressedFilename(String) - Static method in class org.dishevelled.compress.BgzfUtils
-
Detects common block compressed gzip (BGZF) suffixes in the given filename.
- isGzipFile(File) - Static method in class org.dishevelled.compress.Compress
-
Return true if the specified file is a gzip file.
- isGzipFilename(String) - Static method in class org.dishevelled.compress.Compress
-
Return true if the specified file is a gzip file name.
- isGzipInputStream(InputStream) - Static method in class org.dishevelled.compress.Compress
-
Return true if the specified file is a gzip input stream.