Package org.hl7.fhir.r4.model
Enum CompartmentDefinition.CompartmentType
- java.lang.Object
-
- java.lang.Enum<CompartmentDefinition.CompartmentType>
-
- org.hl7.fhir.r4.model.CompartmentDefinition.CompartmentType
-
- All Implemented Interfaces:
Serializable,Comparable<CompartmentDefinition.CompartmentType>
- Enclosing class:
- CompartmentDefinition
public static enum CompartmentDefinition.CompartmentType extends Enum<CompartmentDefinition.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 parsers with the generic typesPATIENTThe 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 CompartmentDefinition.CompartmentTypefromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static CompartmentDefinition.CompartmentTypevalueOf(String name)Returns the enum constant of this type with the specified name.static CompartmentDefinition.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 CompartmentDefinition.CompartmentType PATIENT
The compartment definition is for the patient compartment.
-
ENCOUNTER
public static final CompartmentDefinition.CompartmentType ENCOUNTER
The compartment definition is for the encounter compartment.
-
RELATEDPERSON
public static final CompartmentDefinition.CompartmentType RELATEDPERSON
The compartment definition is for the related-person compartment.
-
PRACTITIONER
public static final CompartmentDefinition.CompartmentType PRACTITIONER
The compartment definition is for the practitioner compartment.
-
DEVICE
public static final CompartmentDefinition.CompartmentType DEVICE
The compartment definition is for the device compartment.
-
NULL
public static final CompartmentDefinition.CompartmentType NULL
added to help the parsers with the generic types
-
-
Method Detail
-
values
public static CompartmentDefinition.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 (CompartmentDefinition.CompartmentType c : CompartmentDefinition.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 CompartmentDefinition.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 CompartmentDefinition.CompartmentType fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-