Enum WorkflowObject.GRAPHTYPE

    • 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 name
        NullPointerException - if the argument is null