Enum TaskPerformerType
- java.lang.Object
-
- java.lang.Enum<TaskPerformerType>
-
- org.hl7.fhir.dstu2016may.model.codesystems.TaskPerformerType
-
- All Implemented Interfaces:
Serializable,Comparable<TaskPerformerType>
public enum TaskPerformerType extends Enum<TaskPerformerType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACQUIRERA workflow participant that acquires resources (specimens, images, etc) necessary to perform the task.DISPATCHERA workflow participant that dispatches services (assigns another task to a participant).MANAGERA workflow participant that manages task activity.MONITORA workflow participant that monitors task activity.NULLadded to help the parsersPERFORMERA workflow participant that performs services.REQUESTERA workflow participant that requests services.REVIEWERA workflow participant that reviews task inputs or outputs.SCHEDULERA workflow participant that schedules (dispatches and sets the time or date for performance of) services.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TaskPerformerTypefromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static TaskPerformerTypevalueOf(String name)Returns the enum constant of this type with the specified name.static TaskPerformerType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
REQUESTER
public static final TaskPerformerType REQUESTER
A workflow participant that requests services.
-
DISPATCHER
public static final TaskPerformerType DISPATCHER
A workflow participant that dispatches services (assigns another task to a participant).
-
SCHEDULER
public static final TaskPerformerType SCHEDULER
A workflow participant that schedules (dispatches and sets the time or date for performance of) services.
-
PERFORMER
public static final TaskPerformerType PERFORMER
A workflow participant that performs services.
-
MONITOR
public static final TaskPerformerType MONITOR
A workflow participant that monitors task activity.
-
MANAGER
public static final TaskPerformerType MANAGER
A workflow participant that manages task activity.
-
ACQUIRER
public static final TaskPerformerType ACQUIRER
A workflow participant that acquires resources (specimens, images, etc) necessary to perform the task.
-
REVIEWER
public static final TaskPerformerType REVIEWER
A workflow participant that reviews task inputs or outputs.
-
NULL
public static final TaskPerformerType NULL
added to help the parsers
-
-
Method Detail
-
values
public static TaskPerformerType[] 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 (TaskPerformerType c : TaskPerformerType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TaskPerformerType 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 TaskPerformerType fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-