Enum FlagCategory
- java.lang.Object
-
- java.lang.Enum<FlagCategory>
-
- org.hl7.fhir.dstu3.model.codesystems.FlagCategory
-
- All Implemented Interfaces:
Serializable,Comparable<FlagCategory>
public enum FlagCategory extends Enum<FlagCategory>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADMINFlags related to administrative and financial processes.CONTACTFlags related to coming into contact with the patient.DIETFlags related to the subject's dietary needs.DRUGFlags related to the patient's medications.LABFlags related to performing laboratory tests and related processes (e.g.NULLadded to help the parsers
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static FlagCategoryfromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static FlagCategoryvalueOf(String name)Returns the enum constant of this type with the specified name.static FlagCategory[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DIET
public static final FlagCategory DIET
Flags related to the subject's dietary needs.
-
DRUG
public static final FlagCategory DRUG
Flags related to the patient's medications.
-
LAB
public static final FlagCategory LAB
Flags related to performing laboratory tests and related processes (e.g. phlebotomy).
-
ADMIN
public static final FlagCategory ADMIN
Flags related to administrative and financial processes.
-
CONTACT
public static final FlagCategory CONTACT
Flags related to coming into contact with the patient.
-
NULL
public static final FlagCategory NULL
added to help the parsers
-
-
Method Detail
-
values
public static FlagCategory[] 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 (FlagCategory c : FlagCategory.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FlagCategory 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 FlagCategory fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-