Enum ActionRelationshipType
- java.lang.Object
-
- java.lang.Enum<ActionRelationshipType>
-
- org.hl7.fhir.r4.model.codesystems.ActionRelationshipType
-
- All Implemented Interfaces:
Serializable,Comparable<ActionRelationshipType>
public enum ActionRelationshipType extends Enum<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
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ActionRelationshipTypefromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static ActionRelationshipTypevalueOf(String name)Returns the enum constant of this type with the specified name.static 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 ActionRelationshipType BEFORESTART
The action must be performed before the start of the related action.
-
BEFORE
public static final ActionRelationshipType BEFORE
The action must be performed before the related action.
-
BEFOREEND
public static final ActionRelationshipType BEFOREEND
The action must be performed before the end of the related action.
-
CONCURRENTWITHSTART
public static final ActionRelationshipType CONCURRENTWITHSTART
The action must be performed concurrent with the start of the related action.
-
CONCURRENT
public static final ActionRelationshipType CONCURRENT
The action must be performed concurrent with the related action.
-
CONCURRENTWITHEND
public static final ActionRelationshipType CONCURRENTWITHEND
The action must be performed concurrent with the end of the related action.
-
AFTERSTART
public static final ActionRelationshipType AFTERSTART
The action must be performed after the start of the related action.
-
AFTER
public static final ActionRelationshipType AFTER
The action must be performed after the related action.
-
AFTEREND
public static final ActionRelationshipType AFTEREND
The action must be performed after the end of the related action.
-
NULL
public static final ActionRelationshipType NULL
added to help the parsers
-
-
Method Detail
-
values
public static 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 (ActionRelationshipType c : 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 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 ActionRelationshipType fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-