Enum WorkContextDelegate.Resource
- java.lang.Object
-
- java.lang.Enum<WorkContextDelegate.Resource>
-
- com.redhat.parodos.workflow.context.WorkContextDelegate.Resource
-
- All Implemented Interfaces:
Serializable,Comparable<WorkContextDelegate.Resource>
- Enclosing class:
- WorkContextDelegate
public static enum WorkContextDelegate.Resource extends Enum<WorkContextDelegate.Resource>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ARGUMENTSIDNAMEPARAMETERSPARENT_WORKFLOWSTATUSWORKFLOW_OPTIONS
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static WorkContextDelegate.ResourcevalueOf(String name)Returns the enum constant of this type with the specified name.static WorkContextDelegate.Resource[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ID
public static final WorkContextDelegate.Resource ID
-
NAME
public static final WorkContextDelegate.Resource NAME
-
PARAMETERS
public static final WorkContextDelegate.Resource PARAMETERS
-
ARGUMENTS
public static final WorkContextDelegate.Resource ARGUMENTS
-
STATUS
public static final WorkContextDelegate.Resource STATUS
-
WORKFLOW_OPTIONS
public static final WorkContextDelegate.Resource WORKFLOW_OPTIONS
-
PARENT_WORKFLOW
public static final WorkContextDelegate.Resource PARENT_WORKFLOW
-
-
Method Detail
-
values
public static WorkContextDelegate.Resource[] 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 (WorkContextDelegate.Resource c : WorkContextDelegate.Resource.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WorkContextDelegate.Resource 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
-
-