Package | Description |
---|---|
com.orchestranetworks.addon.daqa |
Provides classes and interfaces required for matching operations.
|
Modifier and Type | Field and Description |
---|---|
static MatchingState |
MatchingState.DELETED |
static MatchingState |
MatchingState.END |
static MatchingState |
MatchingState.GOLDEN |
static MatchingState |
MatchingState.MERGED |
static MatchingState |
MatchingState.PIVOT |
static MatchingState |
MatchingState.START |
static MatchingState |
MatchingState.SUSPECT |
static MatchingState |
MatchingState.SUSPICIOUS |
static MatchingState |
MatchingState.TO_BE_MATCHED |
static MatchingState |
MatchingState.UNMATCHED |
Modifier and Type | Method and Description |
---|---|
MatchingState |
ExactMatchAtOnceContext.getState() |
MatchingState |
RecordContext.getState() |
MatchingState |
MatchingRecord.getState() |
abstract MatchingState |
MatchingStateFactory.parse(String state) |
Modifier and Type | Method and Description |
---|---|
void |
MatchingEventListener.onStateChange(MatchingState before,
RecordContext record)
Called upon every change of a record's state.
|
void |
ExactMatchAtOnceContext.setState(MatchingState state) |
Modifier and Type | Method and Description |
---|---|
void |
MatchingOperations.matchAtOnceFullModeToBeMatched(TableContext context,
int maximumNumberOfMatch,
boolean forceOrphansGolden,
List<MatchingState> statesToTriggerMatching)
Match at once full mode operation on To be matched state.
|
void |
MatchingOperations.matchAtOnceFullModeUnmatched(TableContext context,
int maximumNumberOfMatch,
boolean forceOrphansGolden,
List<MatchingState> statesToTriggerMatching)
Match at once full mode operation on Unmatched state.
|
void |
MatchingOperations.matchAtOnceToBeMatched(TableContext context,
int maximumNumberOfMatch,
boolean cleanMarkers,
List<MatchingState> statesToTriggerMatching)
Match at once operation on To be matched state.
|
void |
MatchingOperations.matchAtOnceUnmatched(TableContext context,
int maximumNumberOfMatch,
boolean cleanMarkers,
List<MatchingState> statesToTriggerMatching)
Match at once operation on Unmatched state.
|
void |
MatchingOperations.matchSelection(TableContext tableContext,
List<MatchingState> sourceStates,
List<MatchingState> targetStates)
Individually matches each source record in the source states against all target matching states.
|
void |
MatchingOperations.matchSelection(TableContext tableContext,
List<MatchingState> sourceStates,
List<MatchingState> targetStates)
Individually matches each source record in the source states against all target matching states.
|
void |
MatchingOperations.matchSelection(TableContext tableContext,
Set<com.onwbp.adaptation.PrimaryKey> sourceRecords,
List<MatchingState> targetStates)
Individually matches each source record against all target matching states.
|
void |
MatchingOperations.purgeAtOnce(TableContext context,
List<MatchingState> states)
Purges, or physically deletes, all records in the specified Matching states.
|
void |
MatchingOperations.setAtOnceToBeMatched(TableContext context,
List<MatchingState> statesToReset,
boolean setUnsetRecords)
Set at once To be matched operation on the whole table.
|
void |
MatchingOperations.setAtOnceUnmatched(TableContext context,
List<MatchingState> statesToReset,
boolean setUnsetRecords)
Set at once Unmatched operation on the whole table.
|