Java org.apache.hadoop.io.compress CompressionCodec fields, constructors, methods, implement or subclass

Example usage for Java org.apache.hadoop.io.compress CompressionCodec fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.hadoop.io.compress CompressionCodec.

The text is from its open source code.

Implementation

org.apache.hadoop.io.compress.CompressionCodec has the following implementations.
Click this link to see all its implementation.

Method

CompressorcreateCompressor()
Create a new Compressor for use by this CompressionCodec .
DecompressorcreateDecompressor()
Create a new Decompressor for use by this CompressionCodec .
CompressionInputStreamcreateInputStream(InputStream in)
Create a CompressionInputStream that will read from the given input stream.
CompressionInputStreamcreateInputStream(InputStream in, Decompressor decompressor)
Create a CompressionInputStream that will read from the given InputStream with the given Decompressor .
CompressionOutputStreamcreateOutputStream(OutputStream out)
Create a CompressionOutputStream that will write to the given OutputStream .
CompressionOutputStreamcreateOutputStream(OutputStream out, Compressor compressor)
Create a CompressionOutputStream that will write to the given OutputStream with the given Compressor .
ClassgetCompressorType()
Get the type of Compressor needed by this CompressionCodec .
ClassgetDecompressorType()
Get the type of Decompressor needed by this CompressionCodec .
StringgetDefaultExtension()
Get the default filename extension for this kind of compression.