Uses of Interface
io.github.ajevans.dbcode.data.structures.IRecordHolder
| Package | Description |
|---|---|
| io.github.ajevans.dbcode.data.structures |
Provides the interfaces and classes for transferable data structures.
|
-
Uses of IRecordHolder in io.github.ajevans.dbcode.data.structures
Classes in io.github.ajevans.dbcode.data.structures that implement IRecordHolder Modifier and Type Class Description classTableGeneric table class containing one or moreIRecordobjects, usually but not by necessity,Rows.Fields in io.github.ajevans.dbcode.data.structures declared as IRecordHolder Modifier and Type Field Description private IRecordHolderRow. parentRecordHolderParent container for the row.Fields in io.github.ajevans.dbcode.data.structures with type parameters of type IRecordHolder Modifier and Type Field Description private ArrayList<IRecordHolder>TabulatedDataset. recordHoldersTheIRecordHolderobjects.Methods in io.github.ajevans.dbcode.data.structures that return IRecordHolder Modifier and Type Method Description IRecordHolderIRecord. getParentRecordHolder()Should return the record holder this record is part of, or null if none.IRecordHolderRow. getParentRecordHolder()Returns the record holder this row is part of.IRecordHolderIDataset. getRecordHolder(int index)Should get a singleRecordHolderat an index.IRecordHolderTabulatedDataset. getRecordHolder(int index)Get a singleIRecordHolderat an index.Methods in io.github.ajevans.dbcode.data.structures that return types with arguments of type IRecordHolder Modifier and Type Method Description ArrayList<IRecordHolder>IDataset. getRecordHolders()Should get allRecordHolderobjects.ArrayList<IRecordHolder>TabulatedDataset. getRecordHolders()Get allIRecordHolderobjects.Methods in io.github.ajevans.dbcode.data.structures with parameters of type IRecordHolder Modifier and Type Method Description voidIDataset. addRecordHolder(IRecordHolder recordHolder)Should add a singleRecordHolderto the end of the container.voidTabulatedDataset. addRecordHolder(IRecordHolder table)Add a singleIRecordHolderto the end of the container.voidIDataset. setRecordHolder(int index, IRecordHolder recordHolder)Should set a singleRecordHolderat an index.voidTabulatedDataset. setRecordHolder(int index, IRecordHolder recordHolder)Set a singleIRecordHolderat an index.Method parameters in io.github.ajevans.dbcode.data.structures with type arguments of type IRecordHolder Modifier and Type Method Description voidIDataset. addRecordHolders(ArrayList<IRecordHolder> recordHolders)Should add a collection ofIRecordHolderobjects to the end of the container.voidTabulatedDataset. addRecordHolders(ArrayList<IRecordHolder> recordHolders)Add a collection ofIRecordHolderobjects to the end of the container.Constructors in io.github.ajevans.dbcode.data.structures with parameters of type IRecordHolder Constructor Description Row(IRecordHolder parentRecordHolder)Constructor for rows with a parent container.