public enum TaskDirective extends Enum<TaskDirective>
| Enum Constant and Description |
|---|
PARALLEL_DOCUMENT_REVIEW
Parallel document review.
|
PARALLEL_DOCUMENT_REVIEW_CONSOLIDATION
Parallel document review consolidation.
|
SERIAL_DOCUMENT_REVIEW
Serial document review.
|
SERIAL_DOCUMENT_REVIEW_UPDATE
Serial document review update.
|
| Modifier and Type | Method and Description |
|---|---|
static TaskDirective |
fromId(String id)
Get task directive from identifier.
|
String |
getId()
Getter for id.
|
static TaskDirective |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TaskDirective[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TaskDirective SERIAL_DOCUMENT_REVIEW
public static final TaskDirective SERIAL_DOCUMENT_REVIEW_UPDATE
public static final TaskDirective PARALLEL_DOCUMENT_REVIEW
public static final TaskDirective PARALLEL_DOCUMENT_REVIEW_CONSOLIDATION
public static TaskDirective[] values()
for (TaskDirective c : TaskDirective.values()) System.out.println(c);
public static TaskDirective 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 TaskDirective fromId(String id)
id - task directive identifierpublic String getId()
Copyright © 2019. All rights reserved.