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

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 ;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy