Uses of Class
kala.compress.compressors.CompressorException
-
Packages that use CompressorException Package Description kala.compress.compressors Provides a unified API and factories for dealing with compressed streams.kala.compress.compressors.brotli Provides stream class for decompressing streams using the Brotli algorithm based on Google's Brotli decoder.kala.compress.compressors.bzip2 Provides stream classes for compressing and decompressing streams using the BZip2 algorithm.kala.compress.compressors.deflate Provides a stream classes that allow (de)compressing streams using the DEFLATE algorithm.kala.compress.compressors.deflate64 Provides a stream that allows decompressing streams using the DEFLATE64(tm) algorithm.kala.compress.compressors.gzip Provides stream classes for compressing and decompressing streams using the GZip algorithm.kala.compress.compressors.lz4 Provides stream classes for the LZ4 algorithm.kala.compress.compressors.lzma Provides stream classes using the "stand-alone" LZMA algorithm.kala.compress.compressors.pack200 Provides stream classes for compressing and decompressing streams using the Pack200 algorithm used to compress Java archives.kala.compress.compressors.snappy Provides stream classes for the Snappy algorithm.kala.compress.compressors.xz Provides stream classes for compressing and decompressing streams using the XZ algorithm.kala.compress.compressors.z Provides stream classes for decompressing streams using the "compress" algorithm used to write .Z files. -
-
Uses of CompressorException in kala.compress.compressors
Methods in kala.compress.compressors that throw CompressorException Modifier and Type Method Description CompressorInputStreamCompressorStreamFactory.BuiltinCompressor. createCompressorInputStream(java.io.InputStream in, boolean decompressUntilEOF, int memoryLimitInKb)CompressorInputStreamCompressorStreamFactory. createCompressorInputStream(java.io.InputStream in)Creates a compressor input stream from an input stream, auto-detecting the compressor type from the first few bytes of the stream.CompressorInputStreamCompressorStreamFactory. createCompressorInputStream(java.io.InputStream in, java.util.Set<java.lang.String> compressorNames)Creates a compressor input stream from an input stream, auto-detecting the compressor type from the first few bytes of the stream while limiting the detected type to the provided set of compressor names.CompressorInputStreamCompressorStreamFactory. createCompressorInputStream(java.lang.String name, java.io.InputStream in)Creates a compressor input stream from a compressor name and an input stream.CompressorInputStreamCompressorStreamFactory. createCompressorInputStream(java.lang.String name, java.io.InputStream in, boolean actualDecompressConcatenated)CompressorInputStreamCompressorStreamProvider. createCompressorInputStream(java.lang.String name, java.io.InputStream in, boolean decompressUntilEOF)Creates a compressor input stream from a compressor name and an input stream.protected abstract CompressorInputStreamCompressorStreamFactory.BuiltinCompressor. createCompressorInputStreamImpl(java.io.InputStream in, boolean decompressUntilEOF, int memoryLimitInKb)CompressorOutputStream<?>CompressorStreamFactory.BuiltinCompressor. createCompressorOutputStream(java.io.OutputStream out)CompressorOutputStream<?>CompressorStreamFactory. createCompressorOutputStream(java.lang.String name, java.io.OutputStream out)Creates a compressor output stream from a compressor name and an output stream.CompressorOutputStream<?>CompressorStreamProvider. createCompressorOutputStream(java.lang.String name, java.io.OutputStream out)Creates a compressor output stream from a compressor name and an output stream.static java.lang.StringCompressorStreamFactory. detect(java.io.InputStream inputStream)Detects the type of compressor stream.(package private) static java.lang.StringCompressorStreamFactory. detect(java.io.InputStream inputStream, java.util.Set<java.lang.String> compressorNames)Detects the type of compressor stream while limiting the type to the provided set of compressor names. -
Uses of CompressorException in kala.compress.compressors.brotli
Methods in kala.compress.compressors.brotli that throw CompressorException Modifier and Type Method Description protected CompressorInputStreamBrotliCompressor. createCompressorInputStreamImpl(java.io.InputStream in, boolean decompressUntilEOF, int memoryLimitInKb) -
Uses of CompressorException in kala.compress.compressors.bzip2
Methods in kala.compress.compressors.bzip2 that throw CompressorException Modifier and Type Method Description protected CompressorInputStreamBZip2Compressor. createCompressorInputStreamImpl(java.io.InputStream in, boolean decompressUntilEOF, int memoryLimitInKb) -
Uses of CompressorException in kala.compress.compressors.deflate
Methods in kala.compress.compressors.deflate that throw CompressorException Modifier and Type Method Description protected CompressorInputStreamDeflateCompressor. createCompressorInputStreamImpl(java.io.InputStream in, boolean decompressUntilEOF, int memoryLimitInKb) -
Uses of CompressorException in kala.compress.compressors.deflate64
Methods in kala.compress.compressors.deflate64 that throw CompressorException Modifier and Type Method Description protected CompressorInputStreamDeflate64Compressor. createCompressorInputStreamImpl(java.io.InputStream in, boolean decompressUntilEOF, int memoryLimitInKb) -
Uses of CompressorException in kala.compress.compressors.gzip
Methods in kala.compress.compressors.gzip that throw CompressorException Modifier and Type Method Description protected CompressorInputStreamGzipCompressor. createCompressorInputStreamImpl(java.io.InputStream in, boolean decompressUntilEOF, int memoryLimitInKb) -
Uses of CompressorException in kala.compress.compressors.lz4
Methods in kala.compress.compressors.lz4 that throw CompressorException Modifier and Type Method Description protected CompressorInputStreamBlockLZ4Compressor. createCompressorInputStreamImpl(java.io.InputStream in, boolean decompressUntilEOF, int memoryLimitInKb)protected CompressorInputStreamFramedLZ4Compressor. createCompressorInputStreamImpl(java.io.InputStream in, boolean decompressUntilEOF, int memoryLimitInKb) -
Uses of CompressorException in kala.compress.compressors.lzma
Methods in kala.compress.compressors.lzma that throw CompressorException Modifier and Type Method Description protected CompressorInputStreamLZMACompressor. createCompressorInputStreamImpl(java.io.InputStream in, boolean decompressUntilEOF, int memoryLimitInKb) -
Uses of CompressorException in kala.compress.compressors.pack200
Methods in kala.compress.compressors.pack200 that throw CompressorException Modifier and Type Method Description protected CompressorInputStreamPack200Compressor. createCompressorInputStreamImpl(java.io.InputStream in, boolean decompressUntilEOF, int memoryLimitInKb) -
Uses of CompressorException in kala.compress.compressors.snappy
Methods in kala.compress.compressors.snappy that throw CompressorException Modifier and Type Method Description protected CompressorInputStreamFramedSnappyCompressor. createCompressorInputStreamImpl(java.io.InputStream in, boolean decompressUntilEOF, int memoryLimitInKb)protected CompressorInputStreamSnappyCompressor. createCompressorInputStreamImpl(java.io.InputStream in, boolean decompressUntilEOF, int memoryLimitInKb) -
Uses of CompressorException in kala.compress.compressors.xz
Methods in kala.compress.compressors.xz that throw CompressorException Modifier and Type Method Description protected CompressorInputStreamXZCompressor. createCompressorInputStreamImpl(java.io.InputStream in, boolean decompressUntilEOF, int memoryLimitInKb) -
Uses of CompressorException in kala.compress.compressors.z
Methods in kala.compress.compressors.z that throw CompressorException Modifier and Type Method Description protected CompressorInputStreamZCompressor. createCompressorInputStreamImpl(java.io.InputStream in, boolean decompressUntilEOF, int memoryLimitInKb)
-