Package de.hybris.platform.cms2.enums
Enum CloneAction
- java.lang.Object
-
- java.lang.Enum<CloneAction>
-
- de.hybris.platform.cms2.enums.CloneAction
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CloneAction>
public enum CloneAction extends java.lang.Enum<CloneAction>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLONEGenerated enum value forCloneAction.CLONEvalue defined at extensioncms2.REFERENCEGenerated enum value forCloneAction.REFERENCEvalue defined at extensioncms2.REMOVEGenerated enum value forCloneAction.REMOVEvalue defined at extensioncms2.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CloneActionvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CloneAction[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CLONE
public static final CloneAction CLONE
Generated enum value forCloneAction.CLONEvalue defined at extensioncms2.
-
REMOVE
public static final CloneAction REMOVE
Generated enum value forCloneAction.REMOVEvalue defined at extensioncms2.
-
REFERENCE
public static final CloneAction REFERENCE
Generated enum value forCloneAction.REFERENCEvalue defined at extensioncms2.
-
-
Method Detail
-
values
public static CloneAction[] 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 (CloneAction c : CloneAction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CloneAction 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
-
-