public class ZstandardCodec extends Codec
Modifier and Type | Field and Description |
---|---|
static int |
DEFAULT_COMPRESSION |
static boolean |
DEFAULT_USE_BUFFERPOOL |
Constructor and Description |
---|
ZstandardCodec(int compressionLevel,
boolean useChecksum,
boolean useBufferPool)
Create a ZstandardCodec instance with the given compressionLevel, checksum,
and bufferPool option
|
Modifier and Type | Method and Description |
---|---|
ByteBuffer |
compress(ByteBuffer data)
Compresses the input data
|
ByteBuffer |
decompress(ByteBuffer compressedData)
Decompress the data
|
boolean |
equals(Object obj)
Codecs must implement an equals() method.
|
String |
getName()
Name of the codec; written to the file's metadata.
|
int |
hashCode()
Codecs must implement a hashCode() method that is consistent with equals().
|
String |
toString() |
computeOffset
public static final int DEFAULT_COMPRESSION
public static final boolean DEFAULT_USE_BUFFERPOOL
public ZstandardCodec(int compressionLevel, boolean useChecksum, boolean useBufferPool)
public String getName()
Codec
public ByteBuffer compress(ByteBuffer data) throws IOException
Codec
compress
in class Codec
IOException
public ByteBuffer decompress(ByteBuffer compressedData) throws IOException
Codec
decompress
in class Codec
IOException
public int hashCode()
Codec
public boolean equals(Object obj)
Codec
Copyright © 2009–2021 The Apache Software Foundation. All rights reserved.