
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