Package org.hl7.fhir.r4.model
Enum GraphDefinition.CompartmentCode
- java.lang.Object
-
- java.lang.Enum<GraphDefinition.CompartmentCode>
-
- org.hl7.fhir.r4.model.GraphDefinition.CompartmentCode
-
- All Implemented Interfaces:
Serializable,Comparable<GraphDefinition.CompartmentCode>
- Enclosing class:
- GraphDefinition
public static enum GraphDefinition.CompartmentCode extends Enum<GraphDefinition.CompartmentCode>
-
-
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 GraphDefinition.CompartmentCodefromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static GraphDefinition.CompartmentCodevalueOf(String name)Returns the enum constant of this type with the specified name.static GraphDefinition.CompartmentCode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PATIENT
public static final GraphDefinition.CompartmentCode PATIENT
The compartment definition is for the patient compartment.
-
ENCOUNTER
public static final GraphDefinition.CompartmentCode ENCOUNTER
The compartment definition is for the encounter compartment.
-
RELATEDPERSON
public static final GraphDefinition.CompartmentCode RELATEDPERSON
The compartment definition is for the related-person compartment.
-
PRACTITIONER
public static final GraphDefinition.CompartmentCode PRACTITIONER
The compartment definition is for the practitioner compartment.
-
DEVICE
public static final GraphDefinition.CompartmentCode DEVICE
The compartment definition is for the device compartment.
-
NULL
public static final GraphDefinition.CompartmentCode NULL
added to help the parsers with the generic types
-
-
Method Detail
-
values
public static GraphDefinition.CompartmentCode[] 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 (GraphDefinition.CompartmentCode c : GraphDefinition.CompartmentCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GraphDefinition.CompartmentCode 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 GraphDefinition.CompartmentCode fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-