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

net.morimekta.config.format.ConfigFormat Maven / Gradle / Ivy

There is a newer version: 2.7.1
Show newest version
package net.morimekta.config.format;

import net.morimekta.config.Config;
import net.morimekta.config.ConfigException;

import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;

/**
 * Base class for config formatters.
 */
public interface ConfigFormat {
    void format(OutputStream out, Config config) throws ConfigException, IOException;

    Config parse(InputStream in) throws ConfigException, IOException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy