Package org.hl7.fhir.r4.model
Enum TestReport.TestReportStatus
- java.lang.Object
-
- java.lang.Enum<TestReport.TestReportStatus>
-
- org.hl7.fhir.r4.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 COMPLETEDAll test operations have completed.ENTEREDINERRORThis test report was entered or created in error.INPROGRESSA test operations is currently executing.NULLadded to help the parsers with the generic typesSTOPPEDThe test script execution was manually stopped.WAITINGA 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.TestReportStatusfromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static TestReport.TestReportStatusvalueOf(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()
-
-