Enum ConceptSubsumptionOutcome
- java.lang.Object
-
- java.lang.Enum<ConceptSubsumptionOutcome>
-
- org.hl7.fhir.r4.model.codesystems.ConceptSubsumptionOutcome
-
- All Implemented Interfaces:
Serializable,Comparable<ConceptSubsumptionOutcome>
public enum ConceptSubsumptionOutcome extends Enum<ConceptSubsumptionOutcome>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EQUIVALENTThe two concepts are equivalent (have the same properties).NOTSUBSUMEDCoding/code "A" and Coding/code "B" are disjoint (e.g.NULLadded to help the parsersSUBSUMEDBYCoding/code "A" is subsumed by Coding/code "B" (e.g.SUBSUMESCoding/code "A" subsumes Coding/code "B" (e.g.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ConceptSubsumptionOutcomefromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static ConceptSubsumptionOutcomevalueOf(String name)Returns the enum constant of this type with the specified name.static ConceptSubsumptionOutcome[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EQUIVALENT
public static final ConceptSubsumptionOutcome EQUIVALENT
The two concepts are equivalent (have the same properties).
-
SUBSUMES
public static final ConceptSubsumptionOutcome SUBSUMES
Coding/code "A" subsumes Coding/code "B" (e.g. B has all the properties A has, and some of it's own).
-
SUBSUMEDBY
public static final ConceptSubsumptionOutcome SUBSUMEDBY
Coding/code "A" is subsumed by Coding/code "B" (e.g. A has all the properties B has, and some of it's own).
-
NOTSUBSUMED
public static final ConceptSubsumptionOutcome NOTSUBSUMED
Coding/code "A" and Coding/code "B" are disjoint (e.g. each has propeties that the other doesn't have).
-
NULL
public static final ConceptSubsumptionOutcome NULL
added to help the parsers
-
-
Method Detail
-
values
public static ConceptSubsumptionOutcome[] 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 (ConceptSubsumptionOutcome c : ConceptSubsumptionOutcome.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ConceptSubsumptionOutcome 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 ConceptSubsumptionOutcome fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-