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 void
IDataConsumer. 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 class
Row
Generic 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. records
TheIRecord
objects.Methods in io.github.ajevans.dbcode.data.structures that return IRecord Modifier and Type Method Description IRecord
IRecordHolder. getRecord(int index)
Should get a singleIRecord
at an index.IRecord
Table. getRecord(int index)
Get a singleIRecord
at 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 allIRecord
objects.ArrayList<IRecord>
Table. getRecords()
Get allIRecords
.Methods in io.github.ajevans.dbcode.data.structures with parameters of type IRecord Modifier and Type Method Description void
IRecordHolder. addRecord(IRecord record)
Should add a singleIRecord
to the end of the holder.void
Table. addRecord(IRecord record)
Add a singleIRecord
to the end of the container.void
IRecordHolder. setRecord(int index, IRecord record)
Should set a singleIRecord
in the holder at index position.void
Table. setRecord(int index, IRecord record)
Sets a singleIRecord
in 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 void
IRecordHolder. addRecords(ArrayList<IRecord> records)
Should add a collection ofIRecord
objects to the end of the container.void
Table. addRecords(ArrayList<IRecord> records)
Add a set ofIRecord
objects 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 void
DerbyConsumer. load(ArrayList<IRecord> records)
Adds multiple records to current database.void
FlatFileConsumer. load(ArrayList<IRecord> records)
Adds multiple records to current store.void
HadoopConsumer. load(ArrayList<IRecord> records)
Adds multiple records to current store.private void
DerbyConsumer. storeRecords(ArrayList<IRecord> records)
INSERTs a collection of records into the database.private void
FlatFileConsumer. storeRecords(ArrayList<IRecord> records)
Add a set of records to the relevant record store (file).private void
HadoopConsumer. 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.