
Package org.hl7.fhir.dstu3.model
Enum PlanDefinition.ActionRelationshipType
- java.lang.Object
-
- java.lang.Enum<PlanDefinition.ActionRelationshipType>
-
- org.hl7.fhir.dstu3.model.PlanDefinition.ActionRelationshipType
-
- All Implemented Interfaces:
Serializable
,Comparable<PlanDefinition.ActionRelationshipType>
- Enclosing class:
- PlanDefinition
public static enum PlanDefinition.ActionRelationshipType extends Enum<PlanDefinition.ActionRelationshipType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AFTER
The action must be performed after the related actionAFTEREND
The action must be performed after the end of the related actionAFTERSTART
The action must be performed after the start of the related actionBEFORE
The action must be performed before the related actionBEFOREEND
The action must be performed before the end of the related actionBEFORESTART
The action must be performed before the start of the related actionCONCURRENT
The action must be performed concurrent with the related actionCONCURRENTWITHEND
The action must be performed concurrent with the end of the related actionCONCURRENTWITHSTART
The action must be performed concurrent with the start of the related actionNULL
added to help the parsers with the generic types
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PlanDefinition.ActionRelationshipType
fromCode(String codeString)
String
getDefinition()
String
getDisplay()
String
getSystem()
String
toCode()
static PlanDefinition.ActionRelationshipType
valueOf(String name)
Returns the enum constant of this type with the specified name.static PlanDefinition.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 PlanDefinition.ActionRelationshipType BEFORESTART
The action must be performed before the start of the related action
-
BEFORE
public static final PlanDefinition.ActionRelationshipType BEFORE
The action must be performed before the related action
-
BEFOREEND
public static final PlanDefinition.ActionRelationshipType BEFOREEND
The action must be performed before the end of the related action
-
CONCURRENTWITHSTART
public static final PlanDefinition.ActionRelationshipType CONCURRENTWITHSTART
The action must be performed concurrent with the start of the related action
-
CONCURRENT
public static final PlanDefinition.ActionRelationshipType CONCURRENT
The action must be performed concurrent with the related action
-
CONCURRENTWITHEND
public static final PlanDefinition.ActionRelationshipType CONCURRENTWITHEND
The action must be performed concurrent with the end of the related action
-
AFTERSTART
public static final PlanDefinition.ActionRelationshipType AFTERSTART
The action must be performed after the start of the related action
-
AFTER
public static final PlanDefinition.ActionRelationshipType AFTER
The action must be performed after the related action
-
AFTEREND
public static final PlanDefinition.ActionRelationshipType AFTEREND
The action must be performed after the end of the related action
-
NULL
public static final PlanDefinition.ActionRelationshipType NULL
added to help the parsers with the generic types
-
-
Method Detail
-
values
public static PlanDefinition.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 (PlanDefinition.ActionRelationshipType c : PlanDefinition.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 PlanDefinition.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 PlanDefinition.ActionRelationshipType fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-