Enum CartEntryAction
- java.lang.Object
-
- java.lang.Enum<CartEntryAction>
-
- de.hybris.platform.acceleratorfacades.cart.action.CartEntryAction
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CartEntryAction>
public enum CartEntryAction extends java.lang.Enum<CartEntryAction>
Accelerator cart entry actions
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CPQ_COPYGenerated enum value forCartEntryAction.CPQ_COPYvalue defined at extensionysapproductconfigaddon.REMOVEGenerated enum value forCartEntryAction.REMOVEvalue defined at extensionacceleratorfacades.SAVEFORLATERGenerated enum value forCartEntryAction.SAVEFORLATERvalue defined at extensionselectivecartsplitlistaddon.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CartEntryActionvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CartEntryAction[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
REMOVE
public static final CartEntryAction REMOVE
Generated enum value forCartEntryAction.REMOVEvalue defined at extensionacceleratorfacades.
-
SAVEFORLATER
public static final CartEntryAction SAVEFORLATER
Generated enum value forCartEntryAction.SAVEFORLATERvalue defined at extensionselectivecartsplitlistaddon.
-
CPQ_COPY
public static final CartEntryAction CPQ_COPY
Generated enum value forCartEntryAction.CPQ_COPYvalue defined at extensionysapproductconfigaddon.
-
-
Method Detail
-
values
public static CartEntryAction[] 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 (CartEntryAction c : CartEntryAction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CartEntryAction 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
-
-