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>
public enum ConceptMapEquivalenceEnum extends Enum<ConceptMapEquivalenceEnum>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DISJOINTDisplay: Disjoint
Code Value: disjoint This is an explicit assertion that there is no mapping between the source and target concept.EQUALDisplay: Equal
Code Value: equal The definitions of the concepts are exactly the same (i.e.EQUIVALENTDisplay: Equivalent
Code Value: equivalent The definitions of the concepts mean the same thing (including when structural implications of meaning are considered) (i.e.INEXACTDisplay: 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.NARROWERDisplay: Narrower
Code Value: narrower The target mapping is narrower in meaning that the source concept.SPECIALIZESDisplay: Specializes
Code Value: specializes The target mapping specializes the meaning of the source concept (e.g.SUBSUMESDisplay: Subsumes
Code Value: subsumes The target mapping subsumes the meaning of the source concept (e.g.UNMATCHEDDisplay: Unmatched
Code Value: unmatched There is no match for this concept in the destination concept system.WIDERDisplay: Wider
Code Value: wider The target mapping is wider in meaning than the source concept.
-
Field Summary
Fields Modifier and Type Field Description static ca.uhn.fhir.model.api.IValueSetEnumBinder<ConceptMapEquivalenceEnum>VALUESET_BINDERConverts codes to their respective enumerated valuesstatic StringVALUESET_IDENTIFIERIdentifier for this Value Set:static StringVALUESET_NAMEName for this Value Set: ConceptMapEquivalence
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ConceptMapEquivalenceEnumforCode(String theCode)Returns the enumerated value associated with this codeStringgetCode()Returns the code associated with this enumerated valueStringgetSystem()Returns the code system associated with this enumerated valuestatic ConceptMapEquivalenceEnumvalueOf(String name)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 Detail
-
EQUIVALENT
public static final ConceptMapEquivalenceEnum 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
public static final ConceptMapEquivalenceEnum 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
public static final ConceptMapEquivalenceEnum WIDER
Display: Wider
Code Value: wider The target mapping is wider in meaning than the source concept.
-
SUBSUMES
public static final ConceptMapEquivalenceEnum SUBSUMES
Display: Subsumes
Code Value: subsumes The target mapping subsumes the meaning of the source concept (e.g. the source is-a target).
-
NARROWER
public static final ConceptMapEquivalenceEnum 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
public static final ConceptMapEquivalenceEnum SPECIALIZES
Display: Specializes
Code Value: specializes The target mapping specializes the meaning of the source concept (e.g. the target is-a source).
-
INEXACT
public static final ConceptMapEquivalenceEnum 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
public static final ConceptMapEquivalenceEnum UNMATCHED
Display: Unmatched
Code Value: unmatched There is no match for this concept in the destination concept system.
-
DISJOINT
public static final ConceptMapEquivalenceEnum DISJOINT
Display: Disjoint
Code Value: disjoint This is an explicit assertion that there is no mapping between the source and target concept.
-
-
Field Detail
-
VALUESET_IDENTIFIER
public static final String VALUESET_IDENTIFIER
Identifier for this Value Set:- See Also:
- Constant Field Values
-
VALUESET_NAME
public static final String VALUESET_NAME
Name for this Value Set: ConceptMapEquivalence- See Also:
- Constant Field Values
-
VALUESET_BINDER
public static final ca.uhn.fhir.model.api.IValueSetEnumBinder<ConceptMapEquivalenceEnum> VALUESET_BINDER
Converts codes to their respective enumerated values
-
-
Method Detail
-
values
public static ConceptMapEquivalenceEnum[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ConceptMapEquivalenceEnum c : ConceptMapEquivalenceEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ConceptMapEquivalenceEnum valueOf(String name)
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
-
forCode
public static ConceptMapEquivalenceEnum forCode(String theCode)
Returns the enumerated value associated with this code
-
-