
Package org.hl7.fhir.dstu3.model
Enum GuidanceResponse.GuidanceResponseStatus
- java.lang.Object
-
- java.lang.Enum<GuidanceResponse.GuidanceResponseStatus>
-
- org.hl7.fhir.dstu3.model.GuidanceResponse.GuidanceResponseStatus
-
- All Implemented Interfaces:
Serializable
,Comparable<GuidanceResponse.GuidanceResponseStatus>
- Enclosing class:
- GuidanceResponse
public static enum GuidanceResponse.GuidanceResponseStatus extends Enum<GuidanceResponse.GuidanceResponseStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DATAREQUESTED
The request was processed successfully, but more data may result in a more complete evaluationDATAREQUIRED
The request was processed, but more data is required to complete the evaluationENTEREDINERROR
The response was entered in errorFAILURE
The request was not processed successfullyINPROGRESS
The request is currently being processedNULL
added to help the parsers with the generic typesSUCCESS
The request was processed successfully
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static GuidanceResponse.GuidanceResponseStatus
fromCode(String codeString)
String
getDefinition()
String
getDisplay()
String
getSystem()
String
toCode()
static GuidanceResponse.GuidanceResponseStatus
valueOf(String name)
Returns the enum constant of this type with the specified name.static GuidanceResponse.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 GuidanceResponse.GuidanceResponseStatus SUCCESS
The request was processed successfully
-
DATAREQUESTED
public static final GuidanceResponse.GuidanceResponseStatus DATAREQUESTED
The request was processed successfully, but more data may result in a more complete evaluation
-
DATAREQUIRED
public static final GuidanceResponse.GuidanceResponseStatus DATAREQUIRED
The request was processed, but more data is required to complete the evaluation
-
INPROGRESS
public static final GuidanceResponse.GuidanceResponseStatus INPROGRESS
The request is currently being processed
-
FAILURE
public static final GuidanceResponse.GuidanceResponseStatus FAILURE
The request was not processed successfully
-
ENTEREDINERROR
public static final GuidanceResponse.GuidanceResponseStatus ENTEREDINERROR
The response was entered in error
-
NULL
public static final GuidanceResponse.GuidanceResponseStatus NULL
added to help the parsers with the generic types
-
-
Method Detail
-
values
public static GuidanceResponse.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 (GuidanceResponse.GuidanceResponseStatus c : GuidanceResponse.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 GuidanceResponse.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 GuidanceResponse.GuidanceResponseStatus fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-