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>
public enum ObservationRelationshipTypeEnum extends Enum<ObservationRelationshipTypeEnum>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DERIVED_FROMDisplay: Derived From
Code Value: derived-from The target resource (Observation or QuestionnaireResponse) is part of the information from which this observation value is derived.HAS_MEMBERDisplay: Has Member
Code Value: has-member This observation is a group observation (e.g.INTERFERED_BYDisplay: 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.QUALIFIED_BYDisplay: Qualified By
Code Value: qualified-by The value of the target observation qualifies (refines) the semantics of the source observation (e.g.REPLACESDisplay: Replaces
Code Value: replaces This observation replaces a previous observation (i.e.SEQUEL_TODisplay: Sequel To
Code Value: sequel-to This observation follows the target observation (e.g.
-
Field Summary
Fields Modifier and Type Field Description static ca.uhn.fhir.model.api.IValueSetEnumBinder<ObservationRelationshipTypeEnum>VALUESET_BINDERConverts codes to their respective enumerated valuesstatic StringVALUESET_IDENTIFIERIdentifier for this Value Set:static StringVALUESET_NAMEName for this Value Set: ObservationRelationshipType
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ObservationRelationshipTypeEnumforCode(String theCode)Returns the enumerated value associated with this codeStringgetCode()Returns the code associated with this enumerated valueStringgetSystem()Returns the code system associated with this enumerated valuestatic ObservationRelationshipTypeEnumvalueOf(String name)Returns 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 Detail
-
HAS_MEMBER
public static final ObservationRelationshipTypeEnum 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
public static final ObservationRelationshipTypeEnum 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
public static final ObservationRelationshipTypeEnum 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
public static final ObservationRelationshipTypeEnum 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
public static final ObservationRelationshipTypeEnum 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
public static final ObservationRelationshipTypeEnum 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 Detail
-
VALUESET_IDENTIFIER
public static final String VALUESET_IDENTIFIER
Identifier for this Value Set:- See Also:
- Constant Field Values
-
VALUESET_NAME
public static final String VALUESET_NAME
Name for this Value Set: ObservationRelationshipType- See Also:
- Constant Field Values
-
VALUESET_BINDER
public static final ca.uhn.fhir.model.api.IValueSetEnumBinder<ObservationRelationshipTypeEnum> VALUESET_BINDER
Converts codes to their respective enumerated values
-
-
Method Detail
-
values
public static ObservationRelationshipTypeEnum[] 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 (ObservationRelationshipTypeEnum c : ObservationRelationshipTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ObservationRelationshipTypeEnum 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
-
forCode
public static ObservationRelationshipTypeEnum forCode(String theCode)
Returns the enumerated value associated with this code
-
-