Package ca.uhn.fhir.model.dstu2.valueset
Enum ConditionCategoryCodesEnum
- java.lang.Object
-
- java.lang.Enum<ConditionCategoryCodesEnum>
-
- ca.uhn.fhir.model.dstu2.valueset.ConditionCategoryCodesEnum
-
- All Implemented Interfaces:
Serializable,Comparable<ConditionCategoryCodesEnum>
public enum ConditionCategoryCodesEnum extends Enum<ConditionCategoryCodesEnum>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COMPLAINTDisplay: Complaint
Code Value: complaint The patient considers the condition an issue to be addressed.DIAGNOSISDisplay: Diagnosis
Code Value: diagnosis This is a judgment made by a healthcare provider that the patient has a particular disease or condition.FINDINGDisplay: Finding
Code Value: finding An observation made by a healthcare provider.SYMPTOMDisplay: Symptom
Code Value: symptom A symptom of a condition (as might be mentioned in a review of systems).
-
Field Summary
Fields Modifier and Type Field Description static ca.uhn.fhir.model.api.IValueSetEnumBinder<ConditionCategoryCodesEnum>VALUESET_BINDERConverts codes to their respective enumerated valuesstatic StringVALUESET_IDENTIFIERIdentifier for this Value Set:static StringVALUESET_NAMEName for this Value Set: Condition Category Codes
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ConditionCategoryCodesEnumforCode(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 ConditionCategoryCodesEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static ConditionCategoryCodesEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
COMPLAINT
public static final ConditionCategoryCodesEnum COMPLAINT
Display: Complaint
Code Value: complaint The patient considers the condition an issue to be addressed.
-
SYMPTOM
public static final ConditionCategoryCodesEnum SYMPTOM
Display: Symptom
Code Value: symptom A symptom of a condition (as might be mentioned in a review of systems).
-
FINDING
public static final ConditionCategoryCodesEnum FINDING
Display: Finding
Code Value: finding An observation made by a healthcare provider.
-
DIAGNOSIS
public static final ConditionCategoryCodesEnum DIAGNOSIS
Display: Diagnosis
Code Value: diagnosis This is a judgment made by a healthcare provider that the patient has a particular disease or condition.
-
-
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: Condition Category Codes- See Also:
- Constant Field Values
-
VALUESET_BINDER
public static final ca.uhn.fhir.model.api.IValueSetEnumBinder<ConditionCategoryCodesEnum> VALUESET_BINDER
Converts codes to their respective enumerated values
-
-
Method Detail
-
values
public static ConditionCategoryCodesEnum[] 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 (ConditionCategoryCodesEnum c : ConditionCategoryCodesEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ConditionCategoryCodesEnum 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 ConditionCategoryCodesEnum forCode(String theCode)
Returns the enumerated value associated with this code
-
-