Enum CPQActionType
- java.lang.Object
-
- java.lang.Enum<CPQActionType>
-
- de.hybris.platform.sap.productconfig.facades.CPQActionType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CPQActionType>
public enum CPQActionType extends java.lang.Enum<CPQActionType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description HIDE_FULL_LONG_TEXTGenerated enum value forCPQActionType.HIDE_FULL_LONG_TEXTvalue defined at extensionsapproductconfigfacades.MENU_NAVIGATIONGenerated enum value forCPQActionType.MENU_NAVIGATIONvalue defined at extensionsapproductconfigfacades.NAV_TO_CSTIC_IN_CONFLICTGenerated enum value forCPQActionType.NAV_TO_CSTIC_IN_CONFLICTvalue defined at extensionsapproductconfigfacades.NAV_TO_CSTIC_IN_GROUPGenerated enum value forCPQActionType.NAV_TO_CSTIC_IN_GROUPvalue defined at extensionsapproductconfigfacades.NEXT_BTNGenerated enum value forCPQActionType.NEXT_BTNvalue defined at extensionsapproductconfigfacades.PREV_BTNGenerated enum value forCPQActionType.PREV_BTNvalue defined at extensionsapproductconfigfacades.RETRACT_VALUEGenerated enum value forCPQActionType.RETRACT_VALUEvalue defined at extensionsapproductconfigfacades.SHOW_FULL_LONG_TEXTGenerated enum value forCPQActionType.SHOW_FULL_LONG_TEXTvalue defined at extensionsapproductconfigfacades.TOGGLE_EXTENDED_MESSAGEGenerated enum value forCPQActionType.TOGGLE_EXTENDED_MESSAGEvalue defined at extensionsapproductconfigfacades.TOGGLE_GROUPGenerated enum value forCPQActionType.TOGGLE_GROUPvalue defined at extensionsapproductconfigfacades.TOGGLE_IMAGE_GALLERYGenerated enum value forCPQActionType.TOGGLE_IMAGE_GALLERYvalue defined at extensionsapproductconfigfacades.VALUE_CHANGEDGenerated enum value forCPQActionType.VALUE_CHANGEDvalue defined at extensionsapproductconfigfacades.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CPQActionTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CPQActionType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NAV_TO_CSTIC_IN_GROUP
public static final CPQActionType NAV_TO_CSTIC_IN_GROUP
Generated enum value forCPQActionType.NAV_TO_CSTIC_IN_GROUPvalue defined at extensionsapproductconfigfacades.
-
NAV_TO_CSTIC_IN_CONFLICT
public static final CPQActionType NAV_TO_CSTIC_IN_CONFLICT
Generated enum value forCPQActionType.NAV_TO_CSTIC_IN_CONFLICTvalue defined at extensionsapproductconfigfacades.
-
PREV_BTN
public static final CPQActionType PREV_BTN
Generated enum value forCPQActionType.PREV_BTNvalue defined at extensionsapproductconfigfacades.
-
NEXT_BTN
public static final CPQActionType NEXT_BTN
Generated enum value forCPQActionType.NEXT_BTNvalue defined at extensionsapproductconfigfacades.
-
SHOW_FULL_LONG_TEXT
public static final CPQActionType SHOW_FULL_LONG_TEXT
Generated enum value forCPQActionType.SHOW_FULL_LONG_TEXTvalue defined at extensionsapproductconfigfacades.
-
HIDE_FULL_LONG_TEXT
public static final CPQActionType HIDE_FULL_LONG_TEXT
Generated enum value forCPQActionType.HIDE_FULL_LONG_TEXTvalue defined at extensionsapproductconfigfacades.
-
MENU_NAVIGATION
public static final CPQActionType MENU_NAVIGATION
Generated enum value forCPQActionType.MENU_NAVIGATIONvalue defined at extensionsapproductconfigfacades.
-
VALUE_CHANGED
public static final CPQActionType VALUE_CHANGED
Generated enum value forCPQActionType.VALUE_CHANGEDvalue defined at extensionsapproductconfigfacades.
-
RETRACT_VALUE
public static final CPQActionType RETRACT_VALUE
Generated enum value forCPQActionType.RETRACT_VALUEvalue defined at extensionsapproductconfigfacades.
-
TOGGLE_IMAGE_GALLERY
public static final CPQActionType TOGGLE_IMAGE_GALLERY
Generated enum value forCPQActionType.TOGGLE_IMAGE_GALLERYvalue defined at extensionsapproductconfigfacades.
-
TOGGLE_GROUP
public static final CPQActionType TOGGLE_GROUP
Generated enum value forCPQActionType.TOGGLE_GROUPvalue defined at extensionsapproductconfigfacades.
-
TOGGLE_EXTENDED_MESSAGE
public static final CPQActionType TOGGLE_EXTENDED_MESSAGE
Generated enum value forCPQActionType.TOGGLE_EXTENDED_MESSAGEvalue defined at extensionsapproductconfigfacades.
-
-
Method Detail
-
values
public static CPQActionType[] 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 (CPQActionType c : CPQActionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CPQActionType 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
-
-