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

decodes.db.DecodesScriptReader Maven / Gradle / Ivy

Go to download

A collection of software for aggregatting and processing environmental data such as from NOAA GOES satellites.

The newest version!
package decodes.db;

import java.io.IOException;
import java.util.Optional;

/**
 * Provide format statements to a DecodesScriptBuilder
 * during the final creation of the DecodesScriptObject
 * @since 2022-11-05
 */
public interface DecodesScriptReader
{
    /**
     * Create a new FormatStatement for a given script.
     * 
     * @param script decodes script that the BuilderCreates, traditionally 
     *               passed into the FormatStatement constructor
     * @return a new FormatStatement or null when all statements have been read in
     * @throws IOException any error retrieving a statement from a source
     */
    public Optional nextStatement(DecodesScript script) throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy