Record Class DeltaMetastoreTable
java.lang.Object
java.lang.Record
io.trino.plugin.deltalake.metastore.DeltaMetastoreTable
public record DeltaMetastoreTable(SchemaTableName schemaTableName, boolean managed, String location)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionDeltaMetastoreTable(SchemaTableName schemaTableName, boolean managed, String location) Creates an instance of aDeltaMetastoreTablerecord 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.location()Returns the value of thelocationrecord component.booleanmanaged()Returns the value of themanagedrecord component.Returns the value of theschemaTableNamerecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
DeltaMetastoreTable
Creates an instance of aDeltaMetastoreTablerecord class.- Parameters:
schemaTableName- the value for theschemaTableNamerecord componentmanaged- the value for themanagedrecord componentlocation- the value for thelocationrecord 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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
schemaTableName
Returns the value of theschemaTableNamerecord component.- Returns:
- the value of the
schemaTableNamerecord component
-
managed
public boolean managed()Returns the value of themanagedrecord component.- Returns:
- the value of the
managedrecord component
-
location
Returns the value of thelocationrecord component.- Returns:
- the value of the
locationrecord component
-