Uses of Interface
io.github.ajevans.dbcode.data.structures.IMetadata
| Package | Description |
|---|---|
| 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.
|
-
Uses of IMetadata in io.github.ajevans.dbcode.data.structures
Classes in io.github.ajevans.dbcode.data.structures that implement IMetadata Modifier and Type Class Description classMetadataClass for generic metadata (i.e.Fields in io.github.ajevans.dbcode.data.structures declared as IMetadata Modifier and Type Field Description private IMetadataTabulatedDataset. datasetMetadataMetadata for the tabulated dataset.private IMetadataTable. tableMetadataMetadata for the table.Methods in io.github.ajevans.dbcode.data.structures that return IMetadata Modifier and Type Method Description IMetadataIDataset. getMetadata()Should get the metadata for thisIDataset.IMetadataIRecordHolder. getMetadata()Should get the metadata for thisRecordHolder.IMetadataTable. getMetadata()Gets the metadata for this table.IMetadataTabulatedDataset. getMetadata()Gets the metadata for this dataset.Methods in io.github.ajevans.dbcode.data.structures with parameters of type IMetadata Modifier and Type Method Description voidIDataset. setMetadata(IMetadata metadata)Should set the metadata for thisIDataset.voidIRecordHolder. setMetadata(IMetadata metadata)Should set the metadata for thisRecordHolder.voidTable. setMetadata(IMetadata tableMetadata)Sets the metadata for this table.voidTabulatedDataset. setMetadata(IMetadata datasetMetadata)Sets the metadata for this dataset. -
Uses of IMetadata in io.github.ajevans.dbcode.dbconsumers
Methods in io.github.ajevans.dbcode.dbconsumers with parameters of type IMetadata Modifier and Type Method Description private voidFlatFileConsumer. buildMetadataFile(IMetadata metadata, String metadataFileName)Sets up a metadata file for each record holder file.private voidHadoopConsumer. buildMetadataFile(IMetadata metadata, String metadataFileName)Sets up a metadata MapFile for each record holder file.private voidDerbyConsumer. buildMetadataTable(IMetadata metadata, String metadataTableName)Sets up a metadata table for each table.protected StringDerbyConsumer. findTitle(IMetadata metadata)Finds the title category in an unknown IMetadata object.protected StringFlatFileConsumer. findTitle(IMetadata metadata)Finds the title category in an unknown IMetadata object.protected StringHadoopConsumer. findTitle(IMetadata metadata)Finds the title category in an unknown IMetadata object.