Package ca.uhn.fhir.model.dstu2.valueset
Enum ConceptMapEquivalenceEnum
java.lang.Object
java.lang.Enum<ConceptMapEquivalenceEnum>
ca.uhn.fhir.model.dstu2.valueset.ConceptMapEquivalenceEnum
- All Implemented Interfaces:
Serializable
,Comparable<ConceptMapEquivalenceEnum>
-
Enum Constant Summary
Enum ConstantDescriptionDisplay: Disjoint
Code Value: disjoint This is an explicit assertion that there is no mapping between the source and target concept.Display: Equal
Code Value: equal The definitions of the concepts are exactly the same (i.e.Display: Equivalent
Code Value: equivalent The definitions of the concepts mean the same thing (including when structural implications of meaning are considered) (i.e.Display: Inexact
Code Value: inexact The target mapping overlaps with the source concept, but both source and target cover additional meaning, or the definitions are imprecise and it is uncertain whether they have the same boundaries to their meaning.Display: Narrower
Code Value: narrower The target mapping is narrower in meaning that the source concept.Display: Specializes
Code Value: specializes The target mapping specializes the meaning of the source concept (e.g.Display: Subsumes
Code Value: subsumes The target mapping subsumes the meaning of the source concept (e.g.Display: Unmatched
Code Value: unmatched There is no match for this concept in the destination concept system.Display: Wider
Code Value: wider The target mapping is wider in meaning than the source concept. -
Field Summary
Modifier and TypeFieldDescriptionstatic final ca.uhn.fhir.model.api.IValueSetEnumBinder
<ConceptMapEquivalenceEnum> Converts codes to their respective enumerated valuesstatic final String
Identifier for this Value Set:static final String
Name for this Value Set: ConceptMapEquivalence -
Method Summary
Modifier and TypeMethodDescriptionstatic ConceptMapEquivalenceEnum
Returns the enumerated value associated with this codegetCode()
Returns the code associated with this enumerated valueReturns the code system associated with this enumerated valuestatic ConceptMapEquivalenceEnum
Returns the enum constant of this type with the specified name.static ConceptMapEquivalenceEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
EQUIVALENT
Display: Equivalent
Code Value: equivalent The definitions of the concepts mean the same thing (including when structural implications of meaning are considered) (i.e. extensionally identical). -
EQUAL
Display: Equal
Code Value: equal The definitions of the concepts are exactly the same (i.e. only grammatical differences) and structural implications of meaning are identical or irrelevant (i.e. intentionally identical). -
WIDER
Display: Wider
Code Value: wider The target mapping is wider in meaning than the source concept. -
SUBSUMES
Display: Subsumes
Code Value: subsumes The target mapping subsumes the meaning of the source concept (e.g. the source is-a target). -
NARROWER
Display: Narrower
Code Value: narrower The target mapping is narrower in meaning that the source concept. The sense in which the mapping is narrower SHALL be described in the comments in this case, and applications should be careful when attempting to use these mappings operationally. -
SPECIALIZES
Display: Specializes
Code Value: specializes The target mapping specializes the meaning of the source concept (e.g. the target is-a source). -
INEXACT
Display: Inexact
Code Value: inexact The target mapping overlaps with the source concept, but both source and target cover additional meaning, or the definitions are imprecise and it is uncertain whether they have the same boundaries to their meaning. The sense in which the mapping is narrower SHALL be described in the comments in this case, and applications should be careful when attempting to use these mappings operationally. -
UNMATCHED
Display: Unmatched
Code Value: unmatched There is no match for this concept in the destination concept system. -
DISJOINT
Display: Disjoint
Code Value: disjoint This is an explicit assertion that there is no mapping between the source and target concept.
-
-
Field Details
-
VALUESET_IDENTIFIER
Identifier for this Value Set:- See Also:
-
VALUESET_NAME
Name for this Value Set: ConceptMapEquivalence- See Also:
-
VALUESET_BINDER
public static final ca.uhn.fhir.model.api.IValueSetEnumBinder<ConceptMapEquivalenceEnum> VALUESET_BINDERConverts codes to their respective enumerated values
-
-
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
-
getCode
Returns the code associated with this enumerated value -
getSystem
Returns the code system associated with this enumerated value -
forCode
Returns the enumerated value associated with this code
-