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

io.github.vmzakharov.ecdataframe.dataset.DataSet Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
package io.github.vmzakharov.ecdataframe.dataset;

public interface DataSet
{
    void openFileForReading();

    String getName();

    /**
     * Returns the next element in the data set.
     * @return the next element in the data set
     */
    Object next();

    boolean hasNext();

    void close();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy