io.github.vmzakharov.ecdataframe.dataset.HierarchicalDataSet 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;
import io.github.vmzakharov.ecdataframe.dsl.value.ValueType;
abstract public class HierarchicalDataSet
extends DataSetAbstract
{
public HierarchicalDataSet(String newName)
{
super(newName);
}
abstract public Object getValue(String propertyChainString);
abstract public ValueType getFieldType(String fieldName);
}