Enum ProductConfigurationRelatedObjectType
- java.lang.Object
-
- java.lang.Enum<ProductConfigurationRelatedObjectType>
-
- de.hybris.platform.sap.productconfig.runtime.interf.services.impl.ProductConfigurationRelatedObjectType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ProductConfigurationRelatedObjectType>
public enum ProductConfigurationRelatedObjectType extends java.lang.Enum<ProductConfigurationRelatedObjectType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CART_ENTRY
Generated enum value forProductConfigurationRelatedObjectType.CART_ENTRY
value defined at extensionsapproductconfigruntimeinterface
.ORDER_ENTRY
Generated enum value forProductConfigurationRelatedObjectType.ORDER_ENTRY
value defined at extensionsapproductconfigruntimeinterface
.PRODUCT
Generated enum value forProductConfigurationRelatedObjectType.PRODUCT
value defined at extensionsapproductconfigruntimeinterface
.QUOTE_ENTRY
Generated enum value forProductConfigurationRelatedObjectType.QUOTE_ENTRY
value defined at extensionsapproductconfigruntimeinterface
.SAVEDCART_ENTRY
Generated enum value forProductConfigurationRelatedObjectType.SAVEDCART_ENTRY
value defined at extensionsapproductconfigruntimeinterface
.UNKNOWN
Generated enum value forProductConfigurationRelatedObjectType.UNKNOWN
value defined at extensionsapproductconfigruntimeinterface
.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ProductConfigurationRelatedObjectType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ProductConfigurationRelatedObjectType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CART_ENTRY
public static final ProductConfigurationRelatedObjectType CART_ENTRY
Generated enum value forProductConfigurationRelatedObjectType.CART_ENTRY
value defined at extensionsapproductconfigruntimeinterface
.
-
SAVEDCART_ENTRY
public static final ProductConfigurationRelatedObjectType SAVEDCART_ENTRY
Generated enum value forProductConfigurationRelatedObjectType.SAVEDCART_ENTRY
value defined at extensionsapproductconfigruntimeinterface
.
-
ORDER_ENTRY
public static final ProductConfigurationRelatedObjectType ORDER_ENTRY
Generated enum value forProductConfigurationRelatedObjectType.ORDER_ENTRY
value defined at extensionsapproductconfigruntimeinterface
.
-
QUOTE_ENTRY
public static final ProductConfigurationRelatedObjectType QUOTE_ENTRY
Generated enum value forProductConfigurationRelatedObjectType.QUOTE_ENTRY
value defined at extensionsapproductconfigruntimeinterface
.
-
PRODUCT
public static final ProductConfigurationRelatedObjectType PRODUCT
Generated enum value forProductConfigurationRelatedObjectType.PRODUCT
value defined at extensionsapproductconfigruntimeinterface
.
-
UNKNOWN
public static final ProductConfigurationRelatedObjectType UNKNOWN
Generated enum value forProductConfigurationRelatedObjectType.UNKNOWN
value defined at extensionsapproductconfigruntimeinterface
.
-
-
Method Detail
-
values
public static ProductConfigurationRelatedObjectType[] 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 (ProductConfigurationRelatedObjectType c : ProductConfigurationRelatedObjectType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ProductConfigurationRelatedObjectType 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
-
-