Package com.confidentify.client.model
Class MatchJobProgress
- java.lang.Object
-
- com.confidentify.client.model.MatchJobProgress
-
@Generated(value="org.openapitools.codegen.languages.JavaClientCodegen", date="2020-06-18T21:51:17.428661900+02:00[Europe/Paris]") public class MatchJobProgress extends Object
Provides progress data for the job.
-
-
Field Summary
Fields Modifier and Type Field Description static StringSERIALIZED_NAME_INDEX_COLLISIONS_IDENTIFIEDstatic StringSERIALIZED_NAME_INDEX_COLLISIONS_PROCESSEDstatic StringSERIALIZED_NAME_PAIRS_IDENTIFIEDstatic StringSERIALIZED_NAME_PAIRS_PROCESSEDstatic StringSERIALIZED_NAME_RECORDS_INDEXED
-
Constructor Summary
Constructors Constructor Description MatchJobProgress()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)IntegergetIndexCollisionsIdentified()The amount of 'index collisions' identified in the dataset.IntegergetIndexCollisionsProcessed()Provides the amount of index collisions that have been processed thus far.IntegergetPairsIdentified()The amount of record pairs that have been identified as candidates for matching.IntegergetPairsProcessed()The amount of record pairs that have been processed / matched.IntegergetRecordsIndexed()The number of records in the dataset being processed.inthashCode()MatchJobProgressindexCollisionsIdentified(Integer indexCollisionsIdentified)MatchJobProgressindexCollisionsProcessed(Integer indexCollisionsProcessed)MatchJobProgresspairsIdentified(Integer pairsIdentified)MatchJobProgresspairsProcessed(Integer pairsProcessed)MatchJobProgressrecordsIndexed(Integer recordsIndexed)voidsetIndexCollisionsIdentified(Integer indexCollisionsIdentified)voidsetIndexCollisionsProcessed(Integer indexCollisionsProcessed)voidsetPairsIdentified(Integer pairsIdentified)voidsetPairsProcessed(Integer pairsProcessed)voidsetRecordsIndexed(Integer recordsIndexed)StringtoString()
-
-
-
Field Detail
-
SERIALIZED_NAME_RECORDS_INDEXED
public static final String SERIALIZED_NAME_RECORDS_INDEXED
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_INDEX_COLLISIONS_IDENTIFIED
public static final String SERIALIZED_NAME_INDEX_COLLISIONS_IDENTIFIED
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_INDEX_COLLISIONS_PROCESSED
public static final String SERIALIZED_NAME_INDEX_COLLISIONS_PROCESSED
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_PAIRS_IDENTIFIED
public static final String SERIALIZED_NAME_PAIRS_IDENTIFIED
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_PAIRS_PROCESSED
public static final String SERIALIZED_NAME_PAIRS_PROCESSED
- See Also:
- Constant Field Values
-
-
Method Detail
-
recordsIndexed
public MatchJobProgress recordsIndexed(Integer recordsIndexed)
-
getRecordsIndexed
@Nullable public Integer getRecordsIndexed()
The number of records in the dataset being processed.- Returns:
- recordsIndexed
-
setRecordsIndexed
public void setRecordsIndexed(Integer recordsIndexed)
-
indexCollisionsIdentified
public MatchJobProgress indexCollisionsIdentified(Integer indexCollisionsIdentified)
-
getIndexCollisionsIdentified
@Nullable public Integer getIndexCollisionsIdentified()
The amount of 'index collisions' identified in the dataset. This indicates how many overlapping values have been found when initially scanning the dataset's indexed values. Not all index collisions carry the same weight when it comes to determining the overall match, but it can provide an early indication of the size of the deduplication job.- Returns:
- indexCollisionsIdentified
-
setIndexCollisionsIdentified
public void setIndexCollisionsIdentified(Integer indexCollisionsIdentified)
-
indexCollisionsProcessed
public MatchJobProgress indexCollisionsProcessed(Integer indexCollisionsProcessed)
-
getIndexCollisionsProcessed
@Nullable public Integer getIndexCollisionsProcessed()
Provides the amount of index collisions that have been processed thus far.- Returns:
- indexCollisionsProcessed
-
setIndexCollisionsProcessed
public void setIndexCollisionsProcessed(Integer indexCollisionsProcessed)
-
pairsIdentified
public MatchJobProgress pairsIdentified(Integer pairsIdentified)
-
getPairsIdentified
@Nullable public Integer getPairsIdentified()
The amount of record pairs that have been identified as candidates for matching. Record pairs are selected based on index collisions.- Returns:
- pairsIdentified
-
setPairsIdentified
public void setPairsIdentified(Integer pairsIdentified)
-
pairsProcessed
public MatchJobProgress pairsProcessed(Integer pairsProcessed)
-
getPairsProcessed
@Nullable public Integer getPairsProcessed()
The amount of record pairs that have been processed / matched. The outcome of this will be that the `result` fields `pairs_matched` or `pairs_questionable` will be incremented, or the pair will be deemed not a match and therefore not saved as a result.- Returns:
- pairsProcessed
-
setPairsProcessed
public void setPairsProcessed(Integer pairsProcessed)
-
-