public enum V3ActRelationshipCheckpoint extends Enum<V3ActRelationshipCheckpoint>
| Enum Constant and Description |
|---|
B
Condition is tested every time before execution of the service (WHILE condition DO service).
|
E
Condition is tested at the end of a repeated service execution.
|
NULL
added to help the parsers
|
S
Condition is tested once before the service is executed (IF condition THEN service).
|
T
Condition must be true throughout the execution and the service is interrupted (asynchronously) as soon as the condition turns false (asynchronous WHILE loop).
|
X
Condition is a loop checkpoint, i.e.
|
| Modifier and Type | Method and Description |
|---|---|
static V3ActRelationshipCheckpoint |
fromCode(String codeString) |
String |
getDefinition() |
String |
getDisplay() |
String |
getSystem() |
String |
toCode() |
static V3ActRelationshipCheckpoint |
valueOf(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.
|
public static final V3ActRelationshipCheckpoint B
public static final V3ActRelationshipCheckpoint E
public static final V3ActRelationshipCheckpoint S
public static final V3ActRelationshipCheckpoint T
public static final V3ActRelationshipCheckpoint X
public static final V3ActRelationshipCheckpoint NULL
public static V3ActRelationshipCheckpoint[] values()
for (V3ActRelationshipCheckpoint c : V3ActRelationshipCheckpoint.values()) System.out.println(c);
public static V3ActRelationshipCheckpoint valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static V3ActRelationshipCheckpoint fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
org.hl7.fhir.exceptions.FHIRExceptionpublic String getDefinition()
public String getDisplay()
Copyright © 2014–2021 Health Level 7. All rights reserved.