Enum RecorderParameters
- java.lang.Object
-
- java.lang.Enum<RecorderParameters>
-
- de.hybris.platform.sap.productconfig.services.tracking.RecorderParameters
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<RecorderParameters>
public enum RecorderParameters extends java.lang.Enum<RecorderParameters>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CARTGenerated enum value forRecorderParameters.CARTvalue defined at extensionsapproductconfigservices.CART_ITEM_PKGenerated enum value forRecorderParameters.CART_ITEM_PKvalue defined at extensionsapproductconfigservices.CHANGE_TYPEGenerated enum value forRecorderParameters.CHANGE_TYPEvalue defined at extensionsapproductconfigservices.COLLAPSEDGenerated enum value forRecorderParameters.COLLAPSEDvalue defined at extensionsapproductconfigfacades.COMPLETEGenerated enum value forRecorderParameters.COMPLETEvalue defined at extensionsapproductconfigservices.CONSISTENTGenerated enum value forRecorderParameters.CONSISTENTvalue defined at extensionsapproductconfigservices.CSTICGenerated enum value forRecorderParameters.CSTICvalue defined at extensionsapproductconfigservices.CSTIC_PATHGenerated enum value forRecorderParameters.CSTIC_PATHvalue defined at extensionsapproductconfigservices.CSTIC_VALUEGenerated enum value forRecorderParameters.CSTIC_VALUEvalue defined at extensionsapproductconfigservices.GROUPGenerated enum value forRecorderParameters.GROUPvalue defined at extensionsapproductconfigfacades.HIDE_IMAGEGenerated enum value forRecorderParameters.HIDE_IMAGEvalue defined at extensionsapproductconfigfacades.INSTANCEGenerated enum value forRecorderParameters.INSTANCEvalue defined at extensionsapproductconfigservices.INSTANCE_IDGenerated enum value forRecorderParameters.INSTANCE_IDvalue defined at extensionsapproductconfigservices.KB_KEYGenerated enum value forRecorderParameters.KB_KEYvalue defined at extensionsapproductconfigservices.PRODUCTGenerated enum value forRecorderParameters.PRODUCTvalue defined at extensionsapproductconfigservices.QUANTITYGenerated enum value forRecorderParameters.QUANTITYvalue defined at extensionsapproductconfigservices.VARIANTGenerated enum value forRecorderParameters.VARIANTvalue defined at extensionsapproductconfigservices.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RecorderParametersvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static RecorderParameters[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
KB_KEY
public static final RecorderParameters KB_KEY
Generated enum value forRecorderParameters.KB_KEYvalue defined at extensionsapproductconfigservices.
-
PRODUCT
public static final RecorderParameters PRODUCT
Generated enum value forRecorderParameters.PRODUCTvalue defined at extensionsapproductconfigservices.
-
CONSISTENT
public static final RecorderParameters CONSISTENT
Generated enum value forRecorderParameters.CONSISTENTvalue defined at extensionsapproductconfigservices.
-
COMPLETE
public static final RecorderParameters COMPLETE
Generated enum value forRecorderParameters.COMPLETEvalue defined at extensionsapproductconfigservices.
-
CHANGE_TYPE
public static final RecorderParameters CHANGE_TYPE
Generated enum value forRecorderParameters.CHANGE_TYPEvalue defined at extensionsapproductconfigservices.
-
INSTANCE
public static final RecorderParameters INSTANCE
Generated enum value forRecorderParameters.INSTANCEvalue defined at extensionsapproductconfigservices.
-
INSTANCE_ID
public static final RecorderParameters INSTANCE_ID
Generated enum value forRecorderParameters.INSTANCE_IDvalue defined at extensionsapproductconfigservices.
-
CSTIC
public static final RecorderParameters CSTIC
Generated enum value forRecorderParameters.CSTICvalue defined at extensionsapproductconfigservices.
-
CSTIC_PATH
public static final RecorderParameters CSTIC_PATH
Generated enum value forRecorderParameters.CSTIC_PATHvalue defined at extensionsapproductconfigservices.
-
CSTIC_VALUE
public static final RecorderParameters CSTIC_VALUE
Generated enum value forRecorderParameters.CSTIC_VALUEvalue defined at extensionsapproductconfigservices.
-
CART_ITEM_PK
public static final RecorderParameters CART_ITEM_PK
Generated enum value forRecorderParameters.CART_ITEM_PKvalue defined at extensionsapproductconfigservices.
-
VARIANT
public static final RecorderParameters VARIANT
Generated enum value forRecorderParameters.VARIANTvalue defined at extensionsapproductconfigservices.
-
QUANTITY
public static final RecorderParameters QUANTITY
Generated enum value forRecorderParameters.QUANTITYvalue defined at extensionsapproductconfigservices.
-
CART
public static final RecorderParameters CART
Generated enum value forRecorderParameters.CARTvalue defined at extensionsapproductconfigservices.
-
GROUP
public static final RecorderParameters GROUP
Generated enum value forRecorderParameters.GROUPvalue defined at extensionsapproductconfigfacades.
-
COLLAPSED
public static final RecorderParameters COLLAPSED
Generated enum value forRecorderParameters.COLLAPSEDvalue defined at extensionsapproductconfigfacades.
-
HIDE_IMAGE
public static final RecorderParameters HIDE_IMAGE
Generated enum value forRecorderParameters.HIDE_IMAGEvalue defined at extensionsapproductconfigfacades.
-
-
Method Detail
-
values
public static RecorderParameters[] 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 (RecorderParameters c : RecorderParameters.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RecorderParameters 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
-
-