Enum WorkflowViewOptions.Options
- java.lang.Object
-
- java.lang.Enum<WorkflowViewOptions.Options>
-
- de.hybris.platform.cockpit.components.navigationarea.workflow.visualization.WorkflowViewOptions.Options
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<WorkflowViewOptions.Options>
- Enclosing class:
- WorkflowViewOptions
public static enum WorkflowViewOptions.Options extends java.lang.Enum<WorkflowViewOptions.Options>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FINISHED
FROM_TO
PLANNED
RUNNING
TERMINATED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static WorkflowViewOptions.Options
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static WorkflowViewOptions.Options[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PLANNED
public static final WorkflowViewOptions.Options PLANNED
-
RUNNING
public static final WorkflowViewOptions.Options RUNNING
-
FINISHED
public static final WorkflowViewOptions.Options FINISHED
-
TERMINATED
public static final WorkflowViewOptions.Options TERMINATED
-
FROM_TO
public static final WorkflowViewOptions.Options FROM_TO
-
-
Method Detail
-
values
public static WorkflowViewOptions.Options[] 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 (WorkflowViewOptions.Options c : WorkflowViewOptions.Options.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WorkflowViewOptions.Options 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
-
-