Enum GuidanceResponseStatus
- java.lang.Object
-
- java.lang.Enum<GuidanceResponseStatus>
-
- org.hl7.fhir.r4.model.codesystems.GuidanceResponseStatus
-
- All Implemented Interfaces:
Serializable,Comparable<GuidanceResponseStatus>
public enum GuidanceResponseStatus extends Enum<GuidanceResponseStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DATAREQUESTEDThe request was processed successfully, but more data may result in a more complete evaluation.DATAREQUIREDThe request was processed, but more data is required to complete the evaluation.ENTEREDINERRORThe response was entered in error.FAILUREThe request was not processed successfully.INPROGRESSThe request is currently being processed.NULLadded to help the parsersSUCCESSThe request was processed successfully.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static GuidanceResponseStatusfromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static GuidanceResponseStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static GuidanceResponseStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SUCCESS
public static final GuidanceResponseStatus SUCCESS
The request was processed successfully.
-
DATAREQUESTED
public static final GuidanceResponseStatus DATAREQUESTED
The request was processed successfully, but more data may result in a more complete evaluation.
-
DATAREQUIRED
public static final GuidanceResponseStatus DATAREQUIRED
The request was processed, but more data is required to complete the evaluation.
-
INPROGRESS
public static final GuidanceResponseStatus INPROGRESS
The request is currently being processed.
-
FAILURE
public static final GuidanceResponseStatus FAILURE
The request was not processed successfully.
-
ENTEREDINERROR
public static final GuidanceResponseStatus ENTEREDINERROR
The response was entered in error.
-
NULL
public static final GuidanceResponseStatus NULL
added to help the parsers
-
-
Method Detail
-
values
public static GuidanceResponseStatus[] 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 (GuidanceResponseStatus c : GuidanceResponseStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GuidanceResponseStatus 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 GuidanceResponseStatus fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-