Package ca.uhn.fhir.model.dstu2.valueset
Enum DetectedIssueSeverityEnum
- java.lang.Object
-
- java.lang.Enum<DetectedIssueSeverityEnum>
-
- ca.uhn.fhir.model.dstu2.valueset.DetectedIssueSeverityEnum
-
- All Implemented Interfaces:
Serializable,Comparable<DetectedIssueSeverityEnum>
public enum DetectedIssueSeverityEnum extends Enum<DetectedIssueSeverityEnum>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description HIGHDisplay: High
Code Value: high Indicates the issue may be life-threatening or has the potential to cause permanent injury.LOWDisplay: Low
Code Value: low Indicates the issue may result in some adverse consequences but is unlikely to substantially affect the situation of the subject.MODERATEDisplay: Moderate
Code Value: moderate Indicates the issue may result in noticeable adverse consequences but is unlikely to be life-threatening or cause permanent injury.
-
Field Summary
Fields Modifier and Type Field Description static ca.uhn.fhir.model.api.IValueSetEnumBinder<DetectedIssueSeverityEnum>VALUESET_BINDERConverts codes to their respective enumerated valuesstatic StringVALUESET_IDENTIFIERIdentifier for this Value Set:static StringVALUESET_NAMEName for this Value Set: DetectedIssueSeverity
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DetectedIssueSeverityEnumforCode(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 DetectedIssueSeverityEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static DetectedIssueSeverityEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HIGH
public static final DetectedIssueSeverityEnum HIGH
Display: High
Code Value: high Indicates the issue may be life-threatening or has the potential to cause permanent injury.
-
MODERATE
public static final DetectedIssueSeverityEnum MODERATE
Display: Moderate
Code Value: moderate Indicates the issue may result in noticeable adverse consequences but is unlikely to be life-threatening or cause permanent injury.
-
LOW
public static final DetectedIssueSeverityEnum LOW
Display: Low
Code Value: low Indicates the issue may result in some adverse consequences but is unlikely to substantially affect the situation of the subject.
-
-
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: DetectedIssueSeverity- See Also:
- Constant Field Values
-
VALUESET_BINDER
public static final ca.uhn.fhir.model.api.IValueSetEnumBinder<DetectedIssueSeverityEnum> VALUESET_BINDER
Converts codes to their respective enumerated values
-
-
Method Detail
-
values
public static DetectedIssueSeverityEnum[] 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 (DetectedIssueSeverityEnum c : DetectedIssueSeverityEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DetectedIssueSeverityEnum 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 DetectedIssueSeverityEnum forCode(String theCode)
Returns the enumerated value associated with this code
-
-