Enum ProcessConsignmentPreFulfillmentAction.Transition
- java.lang.Object
-
- java.lang.Enum<ProcessConsignmentPreFulfillmentAction.Transition>
-
- de.hybris.platform.yacceleratorordermanagement.actions.consignment.ProcessConsignmentPreFulfillmentAction.Transition
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ProcessConsignmentPreFulfillmentAction.Transition>
- Enclosing class:
- ProcessConsignmentPreFulfillmentAction
protected static enum ProcessConsignmentPreFulfillmentAction.Transition extends java.lang.Enum<ProcessConsignmentPreFulfillmentAction.Transition>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.util.Set<java.lang.String>
getStringValues()
static ProcessConsignmentPreFulfillmentAction.Transition
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ProcessConsignmentPreFulfillmentAction.Transition[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
WAIT
public static final ProcessConsignmentPreFulfillmentAction.Transition WAIT
-
OK
public static final ProcessConsignmentPreFulfillmentAction.Transition OK
-
ERROR
public static final ProcessConsignmentPreFulfillmentAction.Transition ERROR
-
-
Method Detail
-
values
public static ProcessConsignmentPreFulfillmentAction.Transition[] 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 (ProcessConsignmentPreFulfillmentAction.Transition c : ProcessConsignmentPreFulfillmentAction.Transition.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ProcessConsignmentPreFulfillmentAction.Transition 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
-
getStringValues
public static java.util.Set<java.lang.String> getStringValues()
-
-