Package org.hl7.fhir.r4.model
Enum Group.GroupType
- java.lang.Object
-
- java.lang.Enum<Group.GroupType>
-
- org.hl7.fhir.r4.model.Group.GroupType
-
- All Implemented Interfaces:
Serializable,Comparable<Group.GroupType>
- Enclosing class:
- Group
public static enum Group.GroupType extends Enum<Group.GroupType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANIMALGroup contains "animal" Patient resources.DEVICEGroup contains Device resources.MEDICATIONGroup contains Medication resources.NULLadded to help the parsers with the generic typesPERSONGroup contains "person" Patient resources.PRACTITIONERGroup contains healthcare practitioner resources (Practitioner or PractitionerRole).SUBSTANCEGroup contains Substance resources.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Group.GroupTypefromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static Group.GroupTypevalueOf(String name)Returns the enum constant of this type with the specified name.static Group.GroupType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PERSON
public static final Group.GroupType PERSON
Group contains "person" Patient resources.
-
ANIMAL
public static final Group.GroupType ANIMAL
Group contains "animal" Patient resources.
-
PRACTITIONER
public static final Group.GroupType PRACTITIONER
Group contains healthcare practitioner resources (Practitioner or PractitionerRole).
-
DEVICE
public static final Group.GroupType DEVICE
Group contains Device resources.
-
MEDICATION
public static final Group.GroupType MEDICATION
Group contains Medication resources.
-
SUBSTANCE
public static final Group.GroupType SUBSTANCE
Group contains Substance resources.
-
NULL
public static final Group.GroupType NULL
added to help the parsers with the generic types
-
-
Method Detail
-
values
public static Group.GroupType[] 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 (Group.GroupType c : Group.GroupType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Group.GroupType 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 Group.GroupType fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-