Record Class TableFunctionHandle
java.lang.Object
java.lang.Record
io.trino.metadata.TableFunctionHandle
public record TableFunctionHandle(CatalogHandle catalogHandle, ConnectorTableFunctionHandle functionHandle, ConnectorTransactionHandle transactionHandle)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionTableFunctionHandle(CatalogHandle catalogHandle, ConnectorTableFunctionHandle functionHandle, ConnectorTransactionHandle transactionHandle) Creates an instance of aTableFunctionHandlerecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thecatalogHandlerecord component.final booleanIndicates whether some other object is "equal to" this one.Returns the value of thefunctionHandlerecord component.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.Returns the value of thetransactionHandlerecord component.
-
Constructor Details
-
TableFunctionHandle
public TableFunctionHandle(CatalogHandle catalogHandle, ConnectorTableFunctionHandle functionHandle, ConnectorTransactionHandle transactionHandle) Creates an instance of aTableFunctionHandlerecord class.- Parameters:
catalogHandle- the value for thecatalogHandlerecord componentfunctionHandle- the value for thefunctionHandlerecord componenttransactionHandle- the value for thetransactionHandlerecord component
-
-
Method Details
-
toString
-
hashCode
-
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). -
catalogHandle
Returns the value of thecatalogHandlerecord component.- Returns:
- the value of the
catalogHandlerecord component
-
functionHandle
Returns the value of thefunctionHandlerecord component.- Returns:
- the value of the
functionHandlerecord component
-
transactionHandle
Returns the value of thetransactionHandlerecord component.- Returns:
- the value of the
transactionHandlerecord component
-