Record Class BulkInsertPrepareValueMappingStep.TableAndField
java.lang.Object
java.lang.Record
com.kingsrook.qqq.backend.core.processes.implementations.bulk.insert.BulkInsertPrepareValueMappingStep.TableAndField
- Enclosing class:
BulkInsertPrepareValueMappingStep
public static record BulkInsertPrepareValueMappingStep.TableAndField(QTableMetaData table, QFieldMetaData field)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionTableAndField
(QTableMetaData table, QFieldMetaData field) Creates an instance of aTableAndField
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.field()
Returns the value of thefield
record component.final int
hashCode()
Returns a hash code value for this object.table()
Returns the value of thetable
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
TableAndField
Creates an instance of aTableAndField
record class.- Parameters:
table
- the value for thetable
record componentfield
- the value for thefield
record 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)
. -
table
Returns the value of thetable
record component.- Returns:
- the value of the
table
record component
-
field
Returns the value of thefield
record component.- Returns:
- the value of the
field
record component
-