Uses of Interface
io.github.ajevans.dbcode.data.structures.IRecord
| Package | Description |
|---|---|
| io.github.ajevans.dbcode.data.io |
Provides the interfaces and classes for links between abstract data
suppliers and consumers.
|
| io.github.ajevans.dbcode.data.structures |
Provides the interfaces and classes for transferable data structures.
|
| io.github.ajevans.dbcode.dbconsumers |
Provides the classes necessary to write to various
database / file system types.
|
| io.github.ajevans.dbcode.filesuppliers |
Provides the classes for parsing different
data file types.
|
-
Uses of IRecord in io.github.ajevans.dbcode.data.io
Method parameters in io.github.ajevans.dbcode.data.io with type arguments of type IRecord Modifier and Type Method Description voidIDataConsumer. load(ArrayList<IRecord> records)Appends set of records to current store. -
Uses of IRecord in io.github.ajevans.dbcode.data.structures
Classes in io.github.ajevans.dbcode.data.structures that implement IRecord Modifier and Type Class Description classRowGeneric row class containing one or more value objects.Fields in io.github.ajevans.dbcode.data.structures with type parameters of type IRecord Modifier and Type Field Description private ArrayList<IRecord>Table. recordsTheIRecordobjects.Methods in io.github.ajevans.dbcode.data.structures that return IRecord Modifier and Type Method Description IRecordIRecordHolder. getRecord(int index)Should get a singleIRecordat an index.IRecordTable. getRecord(int index)Get a singleIRecordat an index.Methods in io.github.ajevans.dbcode.data.structures that return types with arguments of type IRecord Modifier and Type Method Description ArrayList<IRecord>IRecordHolder. getRecords()Should get allIRecordobjects.ArrayList<IRecord>Table. getRecords()Get allIRecords.Methods in io.github.ajevans.dbcode.data.structures with parameters of type IRecord Modifier and Type Method Description voidIRecordHolder. addRecord(IRecord record)Should add a singleIRecordto the end of the holder.voidTable. addRecord(IRecord record)Add a singleIRecordto the end of the container.voidIRecordHolder. setRecord(int index, IRecord record)Should set a singleIRecordin the holder at index position.voidTable. setRecord(int index, IRecord record)Sets a singleIRecordin the table at index position.Method parameters in io.github.ajevans.dbcode.data.structures with type arguments of type IRecord Modifier and Type Method Description voidIRecordHolder. addRecords(ArrayList<IRecord> records)Should add a collection ofIRecordobjects to the end of the container.voidTable. addRecords(ArrayList<IRecord> records)Add a set ofIRecordobjects to the end of the container. -
Uses of IRecord in io.github.ajevans.dbcode.dbconsumers
Method parameters in io.github.ajevans.dbcode.dbconsumers with type arguments of type IRecord Modifier and Type Method Description voidDerbyConsumer. load(ArrayList<IRecord> records)Adds multiple records to current database.voidFlatFileConsumer. load(ArrayList<IRecord> records)Adds multiple records to current store.voidHadoopConsumer. load(ArrayList<IRecord> records)Adds multiple records to current store.private voidDerbyConsumer. storeRecords(ArrayList<IRecord> records)INSERTs a collection of records into the database.private voidFlatFileConsumer. storeRecords(ArrayList<IRecord> records)Add a set of records to the relevant record store (file).private voidHadoopConsumer. storeRecords(ArrayList<IRecord> records)Add a set of records to the relevant record store (file). -
Uses of IRecord in io.github.ajevans.dbcode.filesuppliers
Methods in io.github.ajevans.dbcode.filesuppliers that return types with arguments of type IRecord Modifier and Type Method Description private ArrayList<IRecord>CruTs2pt1Supplier. getParsedDataBlockAsRows(Table table)Deprecated.Reads a data block and turns it into records.