Package org.hl7.fhir.r4.model
Enum RequestGroup.ActionRelationshipType
- java.lang.Object
-
- java.lang.Enum<RequestGroup.ActionRelationshipType>
-
- org.hl7.fhir.r4.model.RequestGroup.ActionRelationshipType
-
- All Implemented Interfaces:
Serializable,Comparable<RequestGroup.ActionRelationshipType>
- Enclosing class:
- RequestGroup
public static enum RequestGroup.ActionRelationshipType extends Enum<RequestGroup.ActionRelationshipType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AFTERThe action must be performed after the related action.AFTERENDThe action must be performed after the end of the related action.AFTERSTARTThe action must be performed after the start of the related action.BEFOREThe action must be performed before the related action.BEFOREENDThe action must be performed before the end of the related action.BEFORESTARTThe action must be performed before the start of the related action.CONCURRENTThe action must be performed concurrent with the related action.CONCURRENTWITHENDThe action must be performed concurrent with the end of the related action.CONCURRENTWITHSTARTThe action must be performed concurrent with the start of the related action.NULLadded to help the parsers with the generic types
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static RequestGroup.ActionRelationshipTypefromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static RequestGroup.ActionRelationshipTypevalueOf(String name)Returns the enum constant of this type with the specified name.static RequestGroup.ActionRelationshipType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BEFORESTART
public static final RequestGroup.ActionRelationshipType BEFORESTART
The action must be performed before the start of the related action.
-
BEFORE
public static final RequestGroup.ActionRelationshipType BEFORE
The action must be performed before the related action.
-
BEFOREEND
public static final RequestGroup.ActionRelationshipType BEFOREEND
The action must be performed before the end of the related action.
-
CONCURRENTWITHSTART
public static final RequestGroup.ActionRelationshipType CONCURRENTWITHSTART
The action must be performed concurrent with the start of the related action.
-
CONCURRENT
public static final RequestGroup.ActionRelationshipType CONCURRENT
The action must be performed concurrent with the related action.
-
CONCURRENTWITHEND
public static final RequestGroup.ActionRelationshipType CONCURRENTWITHEND
The action must be performed concurrent with the end of the related action.
-
AFTERSTART
public static final RequestGroup.ActionRelationshipType AFTERSTART
The action must be performed after the start of the related action.
-
AFTER
public static final RequestGroup.ActionRelationshipType AFTER
The action must be performed after the related action.
-
AFTEREND
public static final RequestGroup.ActionRelationshipType AFTEREND
The action must be performed after the end of the related action.
-
NULL
public static final RequestGroup.ActionRelationshipType NULL
added to help the parsers with the generic types
-
-
Method Detail
-
values
public static RequestGroup.ActionRelationshipType[] 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 (RequestGroup.ActionRelationshipType c : RequestGroup.ActionRelationshipType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RequestGroup.ActionRelationshipType 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 RequestGroup.ActionRelationshipType fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-