Package ca.uhn.fhir.mdm.api
Enum MdmMatchResultEnum
- All Implemented Interfaces:
Serializable
,Comparable<MdmMatchResultEnum>
-
Enum Constant Summary
Enum ConstantDescriptionLink between Golden Record and Source Resource pointing to the Golden Record for that Source ResourceStrong enough match to consider matched.Manually confirmed to not be a match.Link between two Golden Records resources indicating they may be duplicates.Enough of a match to warrant manual review.Link between two Golden Resources resulting from a merge. -
Method Summary
Modifier and TypeMethodDescriptionstatic MdmMatchResultEnum
Returns the enum constant of this type with the specified name.static MdmMatchResultEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
NO_MATCH
Manually confirmed to not be a match. -
POSSIBLE_MATCH
Enough of a match to warrant manual review. -
MATCH
Strong enough match to consider matched. -
POSSIBLE_DUPLICATE
Link between two Golden Records resources indicating they may be duplicates. -
GOLDEN_RECORD
Link between Golden Record and Source Resource pointing to the Golden Record for that Source Resource -
REDIRECT
Link between two Golden Resources resulting from a merge. One golden resource is deactivated. The inactive golden resource points to the active golden resource after the merge. The source resource points to the inactive golden resource after the merge.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-