Package ca.uhn.fhir.model.dstu2.valueset
Enum ObservationRelationshipTypeEnum
java.lang.Object
java.lang.Enum<ObservationRelationshipTypeEnum>
ca.uhn.fhir.model.dstu2.valueset.ObservationRelationshipTypeEnum
- All Implemented Interfaces:
Serializable
,Comparable<ObservationRelationshipTypeEnum>
-
Enum Constant Summary
Enum ConstantDescriptionDisplay: Derived From
Code Value: derived-from The target resource (Observation or QuestionnaireResponse) is part of the information from which this observation value is derived.Display: Has Member
Code Value: has-member This observation is a group observation (e.g.Display: Interfered By
Code Value: interfered-by The value of the target observation interferes (degrades quality, or prevents valid observation) with the semantics of the source observation (e.g.Display: Qualified By
Code Value: qualified-by The value of the target observation qualifies (refines) the semantics of the source observation (e.g.Display: Replaces
Code Value: replaces This observation replaces a previous observation (i.e.Display: Sequel To
Code Value: sequel-to This observation follows the target observation (e.g. -
Field Summary
Modifier and TypeFieldDescriptionstatic final ca.uhn.fhir.model.api.IValueSetEnumBinder
<ObservationRelationshipTypeEnum> Converts codes to their respective enumerated valuesstatic final String
Identifier for this Value Set:static final String
Name for this Value Set: ObservationRelationshipType -
Method Summary
Modifier and TypeMethodDescriptionReturns the enumerated value associated with this codegetCode()
Returns the code associated with this enumerated valueReturns the code system associated with this enumerated valueReturns the enum constant of this type with the specified name.static ObservationRelationshipTypeEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
HAS_MEMBER
Display: Has Member
Code Value: has-member This observation is a group observation (e.g. a battery, a panel of tests, a set of vital sign measurements) that includes the target as a member of the group. -
DERIVED_FROM
Display: Derived From
Code Value: derived-from The target resource (Observation or QuestionnaireResponse) is part of the information from which this observation value is derived. (e.g. calculated anion gap, Apgar score) NOTE: "derived-from" is only logical choice when referencing QuestionnaireResponse. -
SEQUEL_TO
Display: Sequel To
Code Value: sequel-to This observation follows the target observation (e.g. timed tests such as Glucose Tolerance Test). -
REPLACES
Display: Replaces
Code Value: replaces This observation replaces a previous observation (i.e. a revised value). The target observation is now obsolete. -
QUALIFIED_BY
Display: Qualified By
Code Value: qualified-by The value of the target observation qualifies (refines) the semantics of the source observation (e.g. a lipemia measure target from a plasma measure). -
INTERFERED_BY
Display: Interfered By
Code Value: interfered-by The value of the target observation interferes (degrades quality, or prevents valid observation) with the semantics of the source observation (e.g. a hemolysis measure target from a plasma potassium measure which has no value).
-
-
Field Details
-
VALUESET_IDENTIFIER
Identifier for this Value Set:- See Also:
-
VALUESET_NAME
Name for this Value Set: ObservationRelationshipType- See Also:
-
VALUESET_BINDER
public static final ca.uhn.fhir.model.api.IValueSetEnumBinder<ObservationRelationshipTypeEnum> VALUESET_BINDERConverts codes to their respective enumerated values
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
getCode
Returns the code associated with this enumerated value -
getSystem
Returns the code system associated with this enumerated value -
forCode
Returns the enumerated value associated with this code
-