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

net.sourceforge.plantuml.code.Compression Maven / Gradle / Ivy

There is a newer version: 1.2024.8
Show newest version
// THIS FILE HAS BEEN GENERATED BY A PREPROCESSOR.
package net.sourceforge.plantuml.code;

public interface Compression {

	/**
	 * Shrinks the given in array with length len
	 * 
	 * @return a newly created array with the compressed data.
	 */
	byte[] compress(final byte[] in);

	/**
	 * Grows the given in array with length len compressed
	 * with the shrink method.
	 * 
	 * @return a newly created array with the expanded data.
	 */
	ByteArray decompress(byte[] in) throws NoPlantumlCompressionException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy