Package org.nuxeo.ecm.platform.task
Enum TaskService.VariableName
- java.lang.Object
-
- java.lang.Enum<TaskService.VariableName>
-
- org.nuxeo.ecm.platform.task.TaskService.VariableName
-
- All Implemented Interfaces:
Serializable
,Comparable<TaskService.VariableName>
- Enclosing interface:
- TaskService
public static enum TaskService.VariableName extends Enum<TaskService.VariableName>
The variable used as process instance variables.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description createdFromTaskService
directive
document
documentId
documentRepositoryName
endLifecycleTransition
initiator
principal
right
validated
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TaskService.VariableName
valueOf(String name)
Returns the enum constant of this type with the specified name.static TaskService.VariableName[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
documentId
public static final TaskService.VariableName documentId
-
documentRepositoryName
public static final TaskService.VariableName documentRepositoryName
-
endLifecycleTransition
public static final TaskService.VariableName endLifecycleTransition
-
initiator
public static final TaskService.VariableName initiator
-
document
public static final TaskService.VariableName document
-
principal
public static final TaskService.VariableName principal
-
createdFromTaskService
public static final TaskService.VariableName createdFromTaskService
-
directive
public static final TaskService.VariableName directive
-
validated
public static final TaskService.VariableName validated
-
right
public static final TaskService.VariableName right
-
-
Method Detail
-
values
public static TaskService.VariableName[] 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 (TaskService.VariableName c : TaskService.VariableName.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TaskService.VariableName 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
-
-