
Package org.hl7.fhir.dstu3.model
Enum TestReport.TestReportStatus
- java.lang.Object
-
- java.lang.Enum<TestReport.TestReportStatus>
-
- org.hl7.fhir.dstu3.model.TestReport.TestReportStatus
-
- All Implemented Interfaces:
Serializable
,Comparable<TestReport.TestReportStatus>
- Enclosing class:
- TestReport
public static enum TestReport.TestReportStatus extends Enum<TestReport.TestReportStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COMPLETED
All test operations have completedENTEREDINERROR
This test report was entered or created in errorINPROGRESS
A test operations is currently executingNULL
added to help the parsers with the generic typesSTOPPED
The test script execution was manually stoppedWAITING
A test operation is waiting for an external client request
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TestReport.TestReportStatus
fromCode(String codeString)
String
getDefinition()
String
getDisplay()
String
getSystem()
String
toCode()
static TestReport.TestReportStatus
valueOf(String name)
Returns the enum constant of this type with the specified name.static TestReport.TestReportStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
COMPLETED
public static final TestReport.TestReportStatus COMPLETED
All test operations have completed
-
INPROGRESS
public static final TestReport.TestReportStatus INPROGRESS
A test operations is currently executing
-
WAITING
public static final TestReport.TestReportStatus WAITING
A test operation is waiting for an external client request
-
STOPPED
public static final TestReport.TestReportStatus STOPPED
The test script execution was manually stopped
-
ENTEREDINERROR
public static final TestReport.TestReportStatus ENTEREDINERROR
This test report was entered or created in error
-
NULL
public static final TestReport.TestReportStatus NULL
added to help the parsers with the generic types
-
-
Method Detail
-
values
public static TestReport.TestReportStatus[] 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 (TestReport.TestReportStatus c : TestReport.TestReportStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TestReport.TestReportStatus 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 TestReport.TestReportStatus fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-