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

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

There is a newer version: 1.2.0
Show newest version
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