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.
|
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 with the generic types
|
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 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 CANCELLED
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 ENTEREDINERROR
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–2021 Health Level 7. All rights reserved.