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

org.leialearns.api.common.PrefixDecoderFactory Maven / Gradle / Ivy

The newest version!
package org.leialearns.api.common;

import java.io.InputStream;
import java.io.Reader;

public interface PrefixDecoderFactory {
    PrefixDecoder createReadablePrefixDecoder(Reader reader);
    PrefixDecoder createBinaryPrefixDecoder(InputStream input);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy