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