Enum WorkflowBlockListener.DATAFLOW_DIRECTION
- java.lang.Object
-
- java.lang.Enum<WorkflowBlockListener.DATAFLOW_DIRECTION>
-
- de.uni_trier.wi2.procake.data.object.transformation.WorkflowBlockListener.DATAFLOW_DIRECTION
-
- All Implemented Interfaces:
Serializable,Comparable<WorkflowBlockListener.DATAFLOW_DIRECTION>
- Enclosing interface:
- WorkflowBlockListener
public static enum WorkflowBlockListener.DATAFLOW_DIRECTION extends Enum<WorkflowBlockListener.DATAFLOW_DIRECTION>
The direction of the dataelement for the task.- Author:
- Alexander Stromer
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static WorkflowBlockListener.DATAFLOW_DIRECTIONvalueOf(String name)Returns the enum constant of this type with the specified name.static WorkflowBlockListener.DATAFLOW_DIRECTION[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INPUT
public static final WorkflowBlockListener.DATAFLOW_DIRECTION INPUT
-
OUTPUT
public static final WorkflowBlockListener.DATAFLOW_DIRECTION OUTPUT
-
-
Method Detail
-
values
public static WorkflowBlockListener.DATAFLOW_DIRECTION[] 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 (WorkflowBlockListener.DATAFLOW_DIRECTION c : WorkflowBlockListener.DATAFLOW_DIRECTION.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WorkflowBlockListener.DATAFLOW_DIRECTION 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
-
-