Package org.hl7.fhir.r4.model
Enum Enumerations.ConceptMapEquivalence
- java.lang.Object
-
- java.lang.Enum<Enumerations.ConceptMapEquivalence>
-
- org.hl7.fhir.r4.model.Enumerations.ConceptMapEquivalence
-
- All Implemented Interfaces:
Serializable,Comparable<Enumerations.ConceptMapEquivalence>
- Enclosing class:
- Enumerations
public static enum Enumerations.ConceptMapEquivalence extends Enum<Enumerations.ConceptMapEquivalence>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DISJOINTThis is an explicit assertion that there is no mapping between the source and target concept.EQUALThe definitions of the concepts are exactly the same (i.e.EQUIVALENTThe definitions of the concepts mean the same thing (including when structural implications of meaning are considered) (i.e.INEXACTThe 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.NARROWERThe target mapping is narrower in meaning than the source concept.NULLadded to help the parsersRELATEDTOThe concepts are related to each other, and have at least some overlap in meaning, but the exact relationship is not known.SPECIALIZESThe target mapping specializes the meaning of the source concept (e.g.SUBSUMESThe target mapping subsumes the meaning of the source concept (e.g.UNMATCHEDThere is no match for this concept in the target code system.WIDERThe target mapping is wider in meaning than the source concept.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Enumerations.ConceptMapEquivalencefromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static Enumerations.ConceptMapEquivalencevalueOf(String name)Returns the enum constant of this type with the specified name.static Enumerations.ConceptMapEquivalence[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RELATEDTO
public static final Enumerations.ConceptMapEquivalence RELATEDTO
The concepts are related to each other, and have at least some overlap in meaning, but the exact relationship is not known.
-
EQUIVALENT
public static final Enumerations.ConceptMapEquivalence 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 Enumerations.ConceptMapEquivalence 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 Enumerations.ConceptMapEquivalence WIDER
The target mapping is wider in meaning than the source concept.
-
SUBSUMES
public static final Enumerations.ConceptMapEquivalence SUBSUMES
The target mapping subsumes the meaning of the source concept (e.g. the source is-a target).
-
NARROWER
public static final Enumerations.ConceptMapEquivalence NARROWER
The target mapping is narrower in meaning than 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 Enumerations.ConceptMapEquivalence SPECIALIZES
The target mapping specializes the meaning of the source concept (e.g. the target is-a source).
-
INEXACT
public static final Enumerations.ConceptMapEquivalence 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 inexact 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 Enumerations.ConceptMapEquivalence UNMATCHED
There is no match for this concept in the target code system.
-
DISJOINT
public static final Enumerations.ConceptMapEquivalence DISJOINT
This is an explicit assertion that there is no mapping between the source and target concept.
-
NULL
public static final Enumerations.ConceptMapEquivalence NULL
added to help the parsers
-
-
Method Detail
-
values
public static Enumerations.ConceptMapEquivalence[] 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 (Enumerations.ConceptMapEquivalence c : Enumerations.ConceptMapEquivalence.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Enumerations.ConceptMapEquivalence 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
-
fromCode
public static Enumerations.ConceptMapEquivalence fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-