com.ggasoftware.parso.Decompressor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of parso Show documentation
Show all versions of parso Show documentation
A lightweight library to parse sas7bdat files. Supports 'CHAR' compression.
package com.ggasoftware.parso;
public interface Decompressor {
/**
* The function to decompress data. Compressed data are an array of bytes with control bytes and data bytes.
* The project documentation contains descriptions of the decompression algorithm.
*
* @param offset the offset of bytes array in page
that contains compressed data.
* @param length the length of bytes array that contains compressed data.
* @return an array of bytes with decompressed data.
*/
public byte[] decompressRow(int offset, int srcLength, int resultLength, byte[] page);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy