Package org.apache.iceberg
Interface BlobMetadata
- All Known Implementing Classes:
- GenericBlobMetadata
public interface BlobMetadata
A metadata about a statistics or indices blob.
- 
Method SummaryModifier and TypeMethodDescriptionfields()Ordered list of fields the blob was calculated from.Additional properties of the blob, specific to the blob type.longID of the Iceberg table's snapshot the blob was computed fromlongSequence number of the Iceberg table's snapshot the blob was computed fromtype()Type of the blob.
- 
Method Details- 
typeString type()Type of the blob. Never null
- 
sourceSnapshotIdlong sourceSnapshotId()ID of the Iceberg table's snapshot the blob was computed from
- 
sourceSnapshotSequenceNumberlong sourceSnapshotSequenceNumber()Sequence number of the Iceberg table's snapshot the blob was computed from
- 
fieldsOrdered list of fields the blob was calculated from. Never null
- 
propertiesAdditional properties of the blob, specific to the blob type. Never null
 
-