Package org.hl7.fhir.dstu2.model
Enum ProcessRequest.ActionList
- java.lang.Object
-
- java.lang.Enum<ProcessRequest.ActionList>
-
- org.hl7.fhir.dstu2.model.ProcessRequest.ActionList
-
- All Implemented Interfaces:
Serializable,Comparable<ProcessRequest.ActionList>
- Enclosing class:
- ProcessRequest
public static enum ProcessRequest.ActionList extends Enum<ProcessRequest.ActionList>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CANCELCancel, reverse or nullify the target resource.NULLadded to help the parsersPOLLCheck for previously un-read/ not-retrieved resources.REPROCESSRe-process the target resource.STATUSRetrieve the processing status of the target resource.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ProcessRequest.ActionListfromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static ProcessRequest.ActionListvalueOf(String name)Returns the enum constant of this type with the specified name.static ProcessRequest.ActionList[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CANCEL
public static final ProcessRequest.ActionList CANCEL
Cancel, reverse or nullify the target resource.
-
POLL
public static final ProcessRequest.ActionList POLL
Check for previously un-read/ not-retrieved resources.
-
REPROCESS
public static final ProcessRequest.ActionList REPROCESS
Re-process the target resource.
-
STATUS
public static final ProcessRequest.ActionList STATUS
Retrieve the processing status of the target resource.
-
NULL
public static final ProcessRequest.ActionList NULL
added to help the parsers
-
-
Method Detail
-
values
public static ProcessRequest.ActionList[] 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 (ProcessRequest.ActionList c : ProcessRequest.ActionList.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ProcessRequest.ActionList 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 ProcessRequest.ActionList fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-