Package org.hl7.fhir.r5.model
Enum Enumerations.ConceptMapRelationship
- java.lang.Object
-
- java.lang.Enum<Enumerations.ConceptMapRelationship>
-
- org.hl7.fhir.r5.model.Enumerations.ConceptMapRelationship
-
- All Implemented Interfaces:
Serializable,Comparable<Enumerations.ConceptMapRelationship>
- Enclosing class:
- Enumerations
public static enum Enumerations.ConceptMapRelationship extends Enum<Enumerations.ConceptMapRelationship>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EQUIVALENTThe definitions of the concepts mean the same thing.NOTRELATEDTOThis is an explicit assertion that the target concept is not related to the source concept.NULLadded to help the parsersRELATEDTOThe concepts are related to each other, but the exact relationship is not known.SOURCEISBROADERTHANTARGETThe source concept is broader in meaning than the target concept.SOURCEISNARROWERTHANTARGETThe source concept is narrower in meaning than the target concept.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Enumerations.ConceptMapRelationshipfromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static Enumerations.ConceptMapRelationshipvalueOf(String name)Returns the enum constant of this type with the specified name.static Enumerations.ConceptMapRelationship[]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.ConceptMapRelationship RELATEDTO
The concepts are related to each other, but the exact relationship is not known.
-
EQUIVALENT
public static final Enumerations.ConceptMapRelationship EQUIVALENT
The definitions of the concepts mean the same thing.
-
SOURCEISNARROWERTHANTARGET
public static final Enumerations.ConceptMapRelationship SOURCEISNARROWERTHANTARGET
The source concept is narrower in meaning than the target concept.
-
SOURCEISBROADERTHANTARGET
public static final Enumerations.ConceptMapRelationship SOURCEISBROADERTHANTARGET
The source concept is broader in meaning than the target concept.
-
NOTRELATEDTO
public static final Enumerations.ConceptMapRelationship NOTRELATEDTO
This is an explicit assertion that the target concept is not related to the source concept.
-
NULL
public static final Enumerations.ConceptMapRelationship NULL
added to help the parsers
-
-
Method Detail
-
values
public static Enumerations.ConceptMapRelationship[] 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.ConceptMapRelationship c : Enumerations.ConceptMapRelationship.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.ConceptMapRelationship 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.ConceptMapRelationship fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-