Record Class AbstractMergeDuplicatesTransformStep.MergeProcessConfig
java.lang.Object
java.lang.Record
com.kingsrook.qqq.backend.core.processes.implementations.mergeduplicates.AbstractMergeDuplicatesTransformStep.MergeProcessConfig
- Enclosing class:
AbstractMergeDuplicatesTransformStep
public static record AbstractMergeDuplicatesTransformStep.MergeProcessConfig(String tableName, List<String> uniqueKeyFieldNames, boolean doAutomaticAudits)
extends Record
Record to store the config for this process - e.g., what fields invalid input: '&' tables are used.
-
Constructor Summary
ConstructorsConstructorDescriptionMergeProcessConfig
(String tableName, List<String> uniqueKeyFieldNames, boolean doAutomaticAudits) Creates an instance of aMergeProcessConfig
record class. -
Method Summary
Modifier and TypeMethodDescriptionboolean
Returns the value of thedoAutomaticAudits
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.Returns the value of thetableName
record component.final String
toString()
Returns a string representation of this record class.Returns the value of theuniqueKeyFieldNames
record component.
-
Constructor Details
-
MergeProcessConfig
public MergeProcessConfig(String tableName, List<String> uniqueKeyFieldNames, boolean doAutomaticAudits) Creates an instance of aMergeProcessConfig
record class.- Parameters:
tableName
- the value for thetableName
record componentuniqueKeyFieldNames
- the value for theuniqueKeyFieldNames
record componentdoAutomaticAudits
- the value for thedoAutomaticAudits
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. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with thecompare
method from their corresponding wrapper classes. -
tableName
Returns the value of thetableName
record component.- Returns:
- the value of the
tableName
record component
-
uniqueKeyFieldNames
-
doAutomaticAudits
public boolean doAutomaticAudits()Returns the value of thedoAutomaticAudits
record component.- Returns:
- the value of the
doAutomaticAudits
record component
-