Enum EFlowGraphLayoutMode
- All Implemented Interfaces:
Serializable, Comparable<EFlowGraphLayoutMode>
Possible ways of how the flow graph layout is computed for purposes of visualization.
- Since:
- 8.2.0
- Author:
- XIMA MEDIA GmbH
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionLayout nodes and edges according to the computed directed flow control graph, seeINodeHandler#createFlowGraph.Layout nodes and edges observing constraints from both theflow graphand theabstract syntax tree hierarchy.Layout nodes and edges according to their hierarchy in the abstract syntax tree, seeWorkflowNode.getChildren(). -
Method Summary
Modifier and TypeMethodDescriptionstatic EFlowGraphLayoutModeReturns the enum constant of this type with the specified name.static EFlowGraphLayoutMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
FLOW
Layout nodes and edges according to the computed directed flow control graph, seeINodeHandler#createFlowGraph. -
FLOW_AND_HIERARCHY
Layout nodes and edges observing constraints from both theflow graphand theabstract syntax tree hierarchy. -
HIERARCHY
Layout nodes and edges according to their hierarchy in the abstract syntax tree, seeWorkflowNode.getChildren().
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-