Enum V3ActRelationshipCheckpoint
- java.lang.Object
-
- java.lang.Enum<V3ActRelationshipCheckpoint>
-
- org.hl7.fhir.r4.model.codesystems.V3ActRelationshipCheckpoint
-
- All Implemented Interfaces:
Serializable,Comparable<V3ActRelationshipCheckpoint>
public enum V3ActRelationshipCheckpoint extends Enum<V3ActRelationshipCheckpoint>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BCondition is tested every time before execution of the service (WHILE condition DO service).ECondition is tested at the end of a repeated service execution.NULLadded to help the parsersSCondition is tested once before the service is executed (IF condition THEN service).TCondition must be true throughout the execution and the service is interrupted (asynchronously) as soon as the condition turns false (asynchronous WHILE loop).XCondition is a loop checkpoint, i.e.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static V3ActRelationshipCheckpointfromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static V3ActRelationshipCheckpointvalueOf(String name)Returns the enum constant of this type with the specified name.static V3ActRelationshipCheckpoint[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
B
public static final V3ActRelationshipCheckpoint B
Condition is tested every time before execution of the service (WHILE condition DO service).
-
E
public static final V3ActRelationshipCheckpoint E
Condition is tested at the end of a repeated service execution. The service is repeated only if the condition is true (DO service WHILE condition).
-
S
public static final V3ActRelationshipCheckpoint S
Condition is tested once before the service is executed (IF condition THEN service).
-
T
public static final V3ActRelationshipCheckpoint T
Condition must be true throughout the execution and the service is interrupted (asynchronously) as soon as the condition turns false (asynchronous WHILE loop). The service must be interruptible.
-
X
public static final V3ActRelationshipCheckpoint X
Condition is a loop checkpoint, i.e. it is a step of an activity plan and, if negative causes the containing loop to exit.
-
NULL
public static final V3ActRelationshipCheckpoint NULL
added to help the parsers
-
-
Method Detail
-
values
public static V3ActRelationshipCheckpoint[] 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 (V3ActRelationshipCheckpoint c : V3ActRelationshipCheckpoint.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static V3ActRelationshipCheckpoint 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 V3ActRelationshipCheckpoint fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-