All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ggasoftware.parso.Decompressor Maven / Gradle / Ivy

Go to download

A lightweight library to parse sas7bdat files. Supports 'CHAR' compression.

There is a newer version: 1.2.1
Show newest version
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