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

decodes.db.EmptyDecodesScriptReader 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;

/**
 * A reader that provides no actual data.
 * Primarily for use with editors for starting new scripts
 * 
 * NOTE: At least until the editors can be moved to using their own "reader" implementation
 * @since 2022-11-05
 */
public final class EmptyDecodesScriptReader implements DecodesScriptReader
{

    @Override
    public Optional nextStatement(DecodesScript script) throws IOException
    {
        return Optional.empty();
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy