接口 CompressionEncoder
-
- 所有已知实现类:
DeflateCompression,LZWCompression
public interface CompressionEncoderCompression encoder interface. Encode either on a per row or block basis- 作者:
- osbornb
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 byte[]encode(byte[] bytes, java.nio.ByteOrder byteOrder)Encode the bytesbooleanrowEncoding()True to encode on a per row basis, false to encode on a per block / strip basis
-
-
-
方法详细资料
-
rowEncoding
boolean rowEncoding()
True to encode on a per row basis, false to encode on a per block / strip basis- 返回:
- true for row encoding
-
encode
byte[] encode(byte[] bytes, java.nio.ByteOrder byteOrder)Encode the bytes- 参数:
bytes- bytes to encodebyteOrder- byte order- 返回:
- encoded block of bytes
-
-