Record Class TableSnapshot.MetadataAndProtocolEntry
java.lang.Object
java.lang.Record
io.trino.plugin.deltalake.transactionlog.TableSnapshot.MetadataAndProtocolEntry
- Enclosing class:
- TableSnapshot
public static record TableSnapshot.MetadataAndProtocolEntry(MetadataEntry metadataEntry, ProtocolEntry protocolEntry)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionMetadataAndProtocolEntry(MetadataEntry metadataEntry, ProtocolEntry protocolEntry) Creates an instance of aMetadataAndProtocolEntryrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of themetadataEntryrecord component.Returns the value of theprotocolEntryrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
MetadataAndProtocolEntry
Creates an instance of aMetadataAndProtocolEntryrecord class.- Parameters:
metadataEntry- the value for themetadataEntryrecord componentprotocolEntry- the value for theprotocolEntryrecord component
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
metadataEntry
Returns the value of themetadataEntryrecord component.- Returns:
- the value of the
metadataEntryrecord component
-
protocolEntry
Returns the value of theprotocolEntryrecord component.- Returns:
- the value of the
protocolEntryrecord component
-