Enum WorkflowDesignerGroup
- java.lang.Object
-
- java.lang.Enum<WorkflowDesignerGroup>
-
- com.hybris.backoffice.workflow.designer.handler.connection.WorkflowDesignerGroup
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<WorkflowDesignerGroup>
public enum WorkflowDesignerGroup extends java.lang.Enum<WorkflowDesignerGroup>
List of all available node groups used by WorkflowDesigner feature
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTIONANDDECISIONEND_ACTIONSTART_ACTIONUNKNOWN
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetValue()static WorkflowDesignerGroupvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static WorkflowDesignerGroup[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
START_ACTION
public static final WorkflowDesignerGroup START_ACTION
-
ACTION
public static final WorkflowDesignerGroup ACTION
-
END_ACTION
public static final WorkflowDesignerGroup END_ACTION
-
DECISION
public static final WorkflowDesignerGroup DECISION
-
AND
public static final WorkflowDesignerGroup AND
-
UNKNOWN
public static final WorkflowDesignerGroup UNKNOWN
-
-
Method Detail
-
values
public static WorkflowDesignerGroup[] 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 (WorkflowDesignerGroup c : WorkflowDesignerGroup.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WorkflowDesignerGroup valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getValue
public java.lang.String getValue()
-
-