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

com.gc.iotools.fmt.base.Decoder Maven / Gradle / Ivy

package com.gc.iotools.fmt.base;


/**
 * Interface for extracting the content from an encoding format (es.Base64)
 * 
 * @author dvd.smnt
 */
public interface Decoder {
	byte[] decode(byte[] encodedBytes);

	int getEncodingOffset();

	FormatEnum getFormat();

	float getRatio();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy