Enum WorkflowObject.GRAPHTYPE
- java.lang.Object
-
- java.lang.Enum<WorkflowObject.GRAPHTYPE>
-
- de.uni_trier.wi2.procake.data.object.wf.WorkflowObject.GRAPHTYPE
-
- All Implemented Interfaces:
Serializable,Comparable<WorkflowObject.GRAPHTYPE>
- Enclosing interface:
- WorkflowObject
public static enum WorkflowObject.GRAPHTYPE extends Enum<WorkflowObject.GRAPHTYPE>
Possible types of converting the block-oriented representation into a graph.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static WorkflowObject.GRAPHTYPEvalueOf(String name)Returns the enum constant of this type with the specified name.static WorkflowObject.GRAPHTYPE[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UI_GRAPH
public static final WorkflowObject.GRAPHTYPE UI_GRAPH
The graph is constructed like CAKE II. (Start-End-Nodes for the workflow). The graph will contain the block-oriented objects in the attribute for semantic descriptions.
-
NESTGRAPH
public static final WorkflowObject.GRAPHTYPE NESTGRAPH
The graph is constructed as specified by Ralph Bergmann in ICCBR-Paper April 2011 (NEST-Graph with Workflow-node). The graph will inherit the semantic descriptions of the block-oriented objects as semantic descriptions.
-
-
Method Detail
-
values
public static WorkflowObject.GRAPHTYPE[] 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 (WorkflowObject.GRAPHTYPE c : WorkflowObject.GRAPHTYPE.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WorkflowObject.GRAPHTYPE 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
-
-