![JAR search and dependency download from the Maven repository](/logo.png)
io.github.vmzakharov.ecdataframe.dataset.DataSetAbstract 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;
abstract public class DataSetAbstract
implements DataSet
{
private final String name;
public DataSetAbstract(String newName)
{
this.name = newName;
}
@Override
public String getName()
{
return this.name;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy