Enum Class NodeInsertType
java.lang.Object
java.lang.Enum<NodeInsertType>
de.uni_trier.wi2.procake.gui.objecteditor.nestworkfloweditor.NodeInsertType
- All Implemented Interfaces:
Serializable,Comparable<NodeInsertType>,Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionde.uni_trier.wi2.procake.data.object.nest.NESTGraphItemObjectdoInsertion(de.uni_trier.wi2.procake.data.object.nest.NESTAbstractWorkflowObject nestWorkflow, com.mxgraph.view.mxGraph mxGraph, com.mxgraph.model.mxICell cell) static NodeInsertTypeget(de.uni_trier.wi2.procake.data.object.nest.NESTNodeObject node) de.uni_trier.wi2.procake.data.object.nest.NESTGraphItemObjectinsertAndBlock(de.uni_trier.wi2.procake.data.object.nest.NESTWorkflowObject nestWorkflow, com.mxgraph.view.mxGraph mxGraph, com.mxgraph.model.mxICell startCell) de.uni_trier.wi2.procake.data.object.nest.NESTGraphItemObjectinsertLoopBlock(de.uni_trier.wi2.procake.data.object.nest.NESTWorkflowObject nestWorkflow, com.mxgraph.view.mxGraph mxGraph, com.mxgraph.model.mxICell startCell) de.uni_trier.wi2.procake.data.object.nest.NESTGraphItemObjectinsertOrBlock(de.uni_trier.wi2.procake.data.object.nest.NESTWorkflowObject nestWorkflow, com.mxgraph.view.mxGraph mxGraph, com.mxgraph.model.mxICell startCell) de.uni_trier.wi2.procake.data.object.nest.NESTGraphItemObjectinsertXorBlock(de.uni_trier.wi2.procake.data.object.nest.NESTWorkflowObject nestWorkflow, com.mxgraph.view.mxGraph mxGraph, com.mxgraph.model.mxICell startCell) static NodeInsertTypeReturns the enum constant of this class with the specified name.static NodeInsertType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
TASK
-
DATA
-
SUBWORKFLOW
-
WORKFLOW
-
AND_BLOCK
-
XOR_BLOCK
-
OR_BLOCK
-
LOOP_BLOCK
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-
get
public static NodeInsertType get(de.uni_trier.wi2.procake.data.object.nest.NESTNodeObject node) throws Exception - Throws:
Exception
-
doInsertion
public de.uni_trier.wi2.procake.data.object.nest.NESTGraphItemObject doInsertion(de.uni_trier.wi2.procake.data.object.nest.NESTAbstractWorkflowObject nestWorkflow, com.mxgraph.view.mxGraph mxGraph, com.mxgraph.model.mxICell cell) -
insertXorBlock
public de.uni_trier.wi2.procake.data.object.nest.NESTGraphItemObject insertXorBlock(de.uni_trier.wi2.procake.data.object.nest.NESTWorkflowObject nestWorkflow, com.mxgraph.view.mxGraph mxGraph, com.mxgraph.model.mxICell startCell) -
insertOrBlock
public de.uni_trier.wi2.procake.data.object.nest.NESTGraphItemObject insertOrBlock(de.uni_trier.wi2.procake.data.object.nest.NESTWorkflowObject nestWorkflow, com.mxgraph.view.mxGraph mxGraph, com.mxgraph.model.mxICell startCell) -
insertAndBlock
public de.uni_trier.wi2.procake.data.object.nest.NESTGraphItemObject insertAndBlock(de.uni_trier.wi2.procake.data.object.nest.NESTWorkflowObject nestWorkflow, com.mxgraph.view.mxGraph mxGraph, com.mxgraph.model.mxICell startCell) -
insertLoopBlock
public de.uni_trier.wi2.procake.data.object.nest.NESTGraphItemObject insertLoopBlock(de.uni_trier.wi2.procake.data.object.nest.NESTWorkflowObject nestWorkflow, com.mxgraph.view.mxGraph mxGraph, com.mxgraph.model.mxICell startCell)
-