Enum TaskStatus
- java.lang.Object
-
- java.lang.Enum<TaskStatus>
-
- org.hl7.fhir.r4.model.codesystems.TaskStatus
-
- All Implemented Interfaces:
Serializable,Comparable<TaskStatus>
public enum TaskStatus extends Enum<TaskStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACCEPTEDThe potential performer has agreed to execute the task but has not yet started work.CANCELLEDThe task was not completed.COMPLETEDThe task has been completed.DRAFTThe task is not yet ready to be acted upon.ENTEREDINERRORThe task should never have existed and is retained only because of the possibility it may have used.FAILEDThe task was attempted but could not be completed due to some error.INPROGRESSThe task has been started but is not yet complete.NULLadded to help the parsersONHOLDThe task has been started but work has been paused.READYThe task is ready to be performed, but no action has yet been taken.RECEIVEDA potential performer has claimed ownership of the task and is evaluating whether to perform it.REJECTEDThe potential performer who claimed ownership of the task has decided not to execute it prior to performing any action.REQUESTEDThe task is ready to be acted upon and action is sought.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TaskStatusfromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static TaskStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static TaskStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DRAFT
public static final TaskStatus DRAFT
The task is not yet ready to be acted upon.
-
REQUESTED
public static final TaskStatus REQUESTED
The task is ready to be acted upon and action is sought.
-
RECEIVED
public static final TaskStatus RECEIVED
A potential performer has claimed ownership of the task and is evaluating whether to perform it.
-
ACCEPTED
public static final TaskStatus ACCEPTED
The potential performer has agreed to execute the task but has not yet started work.
-
REJECTED
public static final TaskStatus REJECTED
The potential performer who claimed ownership of the task has decided not to execute it prior to performing any action.
-
READY
public static final TaskStatus READY
The task is ready to be performed, but no action has yet been taken. Used in place of requested/received/accepted/rejected when request assignment and acceptance is a given.
-
CANCELLED
public static final TaskStatus CANCELLED
The task was not completed.
-
INPROGRESS
public static final TaskStatus INPROGRESS
The task has been started but is not yet complete.
-
ONHOLD
public static final TaskStatus ONHOLD
The task has been started but work has been paused.
-
FAILED
public static final TaskStatus FAILED
The task was attempted but could not be completed due to some error.
-
COMPLETED
public static final TaskStatus COMPLETED
The task has been completed.
-
ENTEREDINERROR
public static final TaskStatus ENTEREDINERROR
The task should never have existed and is retained only because of the possibility it may have used.
-
NULL
public static final TaskStatus NULL
added to help the parsers
-
-
Method Detail
-
values
public static TaskStatus[] 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 (TaskStatus c : TaskStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TaskStatus 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 TaskStatus fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-