public static enum Task.TaskStatus extends Enum<Task.TaskStatus>
| Enum Constant and Description |
|---|
ACCEPTED
The potential performer has agreed to execute the task but has not yet started work
|
COMPLETED
The task has been completed (more or less) as requested.
|
DRAFT
The task is not yet ready to be acted upon.
|
FAILED
The task was attempted but could not be completed due to some error.
|
INPROGRESS
Task has been started but is not yet complete.
|
NULL
added to help the parsers
|
ONHOLD
Task has been started but work has been paused
|
READY
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
|
| Modifier and Type | Method and Description |
|---|---|
static Task.TaskStatus |
fromCode(String codeString) |
String |
getDefinition() |
String |
getDisplay() |
String |
getSystem() |
String |
toCode() |
static Task.TaskStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Task.TaskStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Task.TaskStatus DRAFT
public static final Task.TaskStatus REQUESTED
public static final Task.TaskStatus RECEIVED
public static final Task.TaskStatus ACCEPTED
public static final Task.TaskStatus REJECTED
public static final Task.TaskStatus READY
public static final Task.TaskStatus INPROGRESS
public static final Task.TaskStatus ONHOLD
public static final Task.TaskStatus FAILED
public static final Task.TaskStatus COMPLETED
public static final Task.TaskStatus NULL
public static Task.TaskStatus[] values()
for (Task.TaskStatus c : Task.TaskStatus.values()) System.out.println(c);
public static Task.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 Task.TaskStatus fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
org.hl7.fhir.exceptions.FHIRExceptionpublic String getDefinition()
public String getDisplay()
Copyright © 2014–2018 University Health Network. All rights reserved.