Enum CertaintySubcomponentRating
- java.lang.Object
-
- java.lang.Enum<CertaintySubcomponentRating>
-
- org.hl7.fhir.r4.model.codesystems.CertaintySubcomponentRating
-
- All Implemented Interfaces:
Serializable,Comparable<CertaintySubcomponentRating>
public enum CertaintySubcomponentRating extends Enum<CertaintySubcomponentRating>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ABSENTpossible reason for increasing quality rating was checked and found to be absent.CRITICALCONCERNcritical concern.DOWNCODE1reduce quality rating by 1.DOWNCODE2reduce quality rating by 2.DOWNCODE3reduce quality rating by 3.NOCHANGEno change to quality rating.NOCONCERNno serious concern.NULLadded to help the parsersPRESENTpossible reason for increasing quality rating was checked and found to bepresent.SERIOUSCONCERNserious concern.UPCODE1increase quality rating by 1.UPCODE2increase quality rating by 2.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CertaintySubcomponentRatingfromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static CertaintySubcomponentRatingvalueOf(String name)Returns the enum constant of this type with the specified name.static CertaintySubcomponentRating[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NOCHANGE
public static final CertaintySubcomponentRating NOCHANGE
no change to quality rating.
-
DOWNCODE1
public static final CertaintySubcomponentRating DOWNCODE1
reduce quality rating by 1.
-
DOWNCODE2
public static final CertaintySubcomponentRating DOWNCODE2
reduce quality rating by 2.
-
DOWNCODE3
public static final CertaintySubcomponentRating DOWNCODE3
reduce quality rating by 3.
-
UPCODE1
public static final CertaintySubcomponentRating UPCODE1
increase quality rating by 1.
-
UPCODE2
public static final CertaintySubcomponentRating UPCODE2
increase quality rating by 2.
-
NOCONCERN
public static final CertaintySubcomponentRating NOCONCERN
no serious concern.
-
SERIOUSCONCERN
public static final CertaintySubcomponentRating SERIOUSCONCERN
serious concern.
-
CRITICALCONCERN
public static final CertaintySubcomponentRating CRITICALCONCERN
critical concern.
-
PRESENT
public static final CertaintySubcomponentRating PRESENT
possible reason for increasing quality rating was checked and found to bepresent.
-
ABSENT
public static final CertaintySubcomponentRating ABSENT
possible reason for increasing quality rating was checked and found to be absent.
-
NULL
public static final CertaintySubcomponentRating NULL
added to help the parsers
-
-
Method Detail
-
values
public static CertaintySubcomponentRating[] 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 (CertaintySubcomponentRating c : CertaintySubcomponentRating.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CertaintySubcomponentRating 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 CertaintySubcomponentRating fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-