public enum ReportResultCodes extends Enum<ReportResultCodes>
| Enum Constant and Description |
|---|
FAIL
One or more test operations failed one or more asserts.
|
NULL
added to help the parsers
|
PASS
All test operations successfully passed all asserts.
|
PENDING
One or more test operations is pending execution completion.
|
| Modifier and Type | Method and Description |
|---|---|
static ReportResultCodes |
fromCode(String codeString) |
String |
getDefinition() |
String |
getDisplay() |
String |
getSystem() |
String |
toCode() |
static ReportResultCodes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReportResultCodes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReportResultCodes PASS
public static final ReportResultCodes FAIL
public static final ReportResultCodes PENDING
public static final ReportResultCodes NULL
public static ReportResultCodes[] values()
for (ReportResultCodes c : ReportResultCodes.values()) System.out.println(c);
public static ReportResultCodes 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 ReportResultCodes 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.