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 aMergeProcessConfigrecord class. -
Method Summary
Modifier and TypeMethodDescriptionbooleanReturns the value of thedoAutomaticAuditsrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of thetableNamerecord component.final StringtoString()Returns a string representation of this record class.Returns the value of theuniqueKeyFieldNamesrecord component.
-
Constructor Details
-
MergeProcessConfig
public MergeProcessConfig(String tableName, List<String> uniqueKeyFieldNames, boolean doAutomaticAudits) Creates an instance of aMergeProcessConfigrecord class.- Parameters:
tableName- the value for thetableNamerecord componentuniqueKeyFieldNames- the value for theuniqueKeyFieldNamesrecord componentdoAutomaticAudits- the value for thedoAutomaticAuditsrecord 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 thecomparemethod from their corresponding wrapper classes. -
tableName
Returns the value of thetableNamerecord component.- Returns:
- the value of the
tableNamerecord component
-
uniqueKeyFieldNames
-
doAutomaticAudits
public boolean doAutomaticAudits()Returns the value of thedoAutomaticAuditsrecord component.- Returns:
- the value of the
doAutomaticAuditsrecord component
-