Enum Class Enumerations.ConceptMapEquivalence

java.lang.Object
java.lang.Enum<Enumerations.ConceptMapEquivalence>
org.hl7.fhir.dstu3.model.Enumerations.ConceptMapEquivalence
All Implemented Interfaces:
Serializable, Comparable<Enumerations.ConceptMapEquivalence>, Constable
Enclosing class:
Enumerations

  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    This is an explicit assertion that there is no mapping between the source and target concept.
    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).
    The definitions of the concepts mean the same thing (including when structural implications of meaning are considered) (i.e. extensionally identical).
    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 target mapping is narrower in meaning than the source concept.
    added to help the parsers
    The concepts are related to each other, and have at least some overlap in meaning, but the exact relationship is not known
    The target mapping specializes the meaning of the source concept (e.g. the target is-a source).
    The target mapping subsumes the meaning of the source concept (e.g. the source is-a target).
    There is no match for this concept in the destination concept system.
    The target mapping is wider in meaning than the source concept.
  • Method Summary

    Modifier and Type
    Method
    Description
    fromCode(String codeString)
     
     
     
     
     
    Returns the enum constant of this class with the specified name.
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • RELATEDTO

      The concepts are related to each other, and have at least some overlap in meaning, but the exact relationship is not known
    • EQUIVALENT

      The definitions of the concepts mean the same thing (including when structural implications of meaning are considered) (i.e. extensionally identical).
    • 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

      The target mapping is wider in meaning than the source concept.
    • SUBSUMES

      The target mapping subsumes the meaning of the source concept (e.g. the source is-a target).
    • 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

      The target mapping specializes the meaning of the source concept (e.g. the target is-a source).
    • 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

      There is no match for this concept in the destination concept system.
    • DISJOINT

      This is an explicit assertion that there is no mapping between the source and target concept.
    • NULL

      added to help the parsers
  • Method Details