Enum CompartmentType
- java.lang.Object
-
- java.lang.Enum<CompartmentType>
-
- org.hl7.fhir.r4.model.codesystems.CompartmentType
-
- All Implemented Interfaces:
Serializable,Comparable<CompartmentType>
public enum CompartmentType extends Enum<CompartmentType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DEVICEThe compartment definition is for the device compartment.ENCOUNTERThe compartment definition is for the encounter compartment.NULLadded to help the parsersPATIENTThe compartment definition is for the patient compartment.PRACTITIONERThe compartment definition is for the practitioner compartment.RELATEDPERSONThe compartment definition is for the related-person compartment.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CompartmentTypefromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static CompartmentTypevalueOf(String name)Returns the enum constant of this type with the specified name.static CompartmentType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PATIENT
public static final CompartmentType PATIENT
The compartment definition is for the patient compartment.
-
ENCOUNTER
public static final CompartmentType ENCOUNTER
The compartment definition is for the encounter compartment.
-
RELATEDPERSON
public static final CompartmentType RELATEDPERSON
The compartment definition is for the related-person compartment.
-
PRACTITIONER
public static final CompartmentType PRACTITIONER
The compartment definition is for the practitioner compartment.
-
DEVICE
public static final CompartmentType DEVICE
The compartment definition is for the device compartment.
-
NULL
public static final CompartmentType NULL
added to help the parsers
-
-
Method Detail
-
values
public static CompartmentType[] 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 (CompartmentType c : CompartmentType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CompartmentType 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 CompartmentType fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-