io.github.vmzakharov.ecdataframe.dataset.DataSet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dataframe-ec Show documentation
Show all versions of dataframe-ec Show documentation
A tabular data structure based on the Eclipse Collections framework
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();
}