public enum TaskStatus extends Enum<TaskStatus>
| Enum Constant and Description |
|---|
ACCEPTED
The potential performer has agreed to execute the task but has not yet started work.
|
CANCELLED
The task was not completed.
|
COMPLETED
The task has been completed.
|
DRAFT
The task is not yet ready to be acted upon.
|
ENTEREDINERROR
The task should never have existed and is retained only because of the possibility it may have used.
|
FAILED
The task was attempted but could not be completed due to some error.
|
INPROGRESS
The task has been started but is not yet complete.
|
NULL
added to help the parsers
|
ONHOLD
The task has been started but work has been paused.
|
READY
The task is ready to be performed, but no action has yet been taken.
|
RECEIVED
A potential performer has claimed ownership of the task and is evaluating whether to perform it.
|
REJECTED
The potential performer who claimed ownership of the task has decided not to execute it prior to performing any action.
|
REQUESTED
The task is ready to be acted upon and action is sought.
|
| Modifier and Type | Method and Description |
|---|---|
static TaskStatus |
fromCode(String codeString) |
String |
getDefinition() |
String |
getDisplay() |
String |
getSystem() |
String |
toCode() |
static TaskStatus |
valueOf(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.
|
public static final TaskStatus DRAFT
public static final TaskStatus REQUESTED
public static final TaskStatus RECEIVED
public static final TaskStatus ACCEPTED
public static final TaskStatus REJECTED
public static final TaskStatus READY
public static final TaskStatus CANCELLED
public static final TaskStatus INPROGRESS
public static final TaskStatus ONHOLD
public static final TaskStatus FAILED
public static final TaskStatus COMPLETED
public static final TaskStatus ENTEREDINERROR
public static final TaskStatus NULL
public static TaskStatus[] values()
for (TaskStatus c : TaskStatus.values()) System.out.println(c);
public static TaskStatus 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 TaskStatus 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.