com.datastax.data.dataset.io.schema.DataSetSchemaReader Maven / Gradle / Ivy
The newest version!
package com.datastax.data.dataset.io.schema;
import com.datastax.data.dataset.DataSet;
import java.util.List;
public interface DataSetSchemaReader {
DataSet readDataSet() throws SchemaReaderException ;
DataSet readDataSet(String... tableNames) throws SchemaReaderException ;
List addTables(DataSet dataSet, String... tableNames) throws SchemaReaderException ;
List addRelations(DataSet dataSet, String... tableNames) throws SchemaReaderException ;
}