Package org.apache.iceberg
Interface BlobMetadata
- 
- All Known Implementing Classes:
- GenericBlobMetadata
 
 public interface BlobMetadataA metadata about a statistics or indices blob.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<java.lang.Integer>fields()Ordered list of fields the blob was calculated from.java.util.Map<java.lang.String,java.lang.String>properties()Additional properties of the blob, specific to the blob type.longsourceSnapshotId()ID of the Iceberg table's snapshot the blob was computed fromlongsourceSnapshotSequenceNumber()Sequence number of the Iceberg table's snapshot the blob was computed fromjava.lang.Stringtype()Type of the blob.
 
- 
- 
- 
Method Detail- 
typejava.lang.String 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
 - 
fieldsjava.util.List<java.lang.Integer> fields() Ordered list of fields the blob was calculated from. Never null
 - 
propertiesjava.util.Map<java.lang.String,java.lang.String> properties() Additional properties of the blob, specific to the blob type. Never null
 
- 
 
-