Package com.pkgrove.pkgrovekit.storage
Class DatasetManifest
-
- All Implemented Interfaces:
public final class DatasetManifestThe dataset commit record. Existence of a (conditionally-created) manifest is the dataset's existence; its part list is the dataset's exact extent.
-
-
Constructor Summary
Constructors Constructor Description DatasetManifest(String formatId, String runId, Instant createdAt, Schema schema, List<DatasetPart> parts, Long totalRows)
-
Method Summary
Modifier and Type Method Description final StringgetFormatId()final StringgetRunId()final InstantgetCreatedAt()final SchemagetSchema()final List<DatasetPart>getParts()final LonggetTotalRows()final StringtoJson()final static DatasetManifestparse(String json)-
-
Method Detail
-
getFormatId
final String getFormatId()
-
getCreatedAt
final Instant getCreatedAt()
-
getSchema
final Schema getSchema()
-
getParts
final List<DatasetPart> getParts()
-
getTotalRows
final Long getTotalRows()
-
parse
final static DatasetManifest parse(String json)
-
-
-
-