Enum TmaCommerceCartModificationStatus
- java.lang.Object
-
- java.lang.Enum<TmaCommerceCartModificationStatus>
-
- de.hybris.platform.b2ctelcoservices.order.impl.TmaCommerceCartModificationStatus
-
- All Implemented Interfaces:
de.hybris.platform.commerceservices.order.CommerceCartModificationStatus,java.io.Serializable,java.lang.Comparable<TmaCommerceCartModificationStatus>
public enum TmaCommerceCartModificationStatus extends java.lang.Enum<TmaCommerceCartModificationStatus> implements de.hybris.platform.commerceservices.order.CommerceCartModificationStatus
Status values for the CommerceCartModification statusCode specific to TMA.- Since:
- 1810
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COMPATIBILITY_ERRORIndicates a problem between cart entries compatibility policies.ELIGIBILTY_ERROR
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetCode()static TmaCommerceCartModificationStatusvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static TmaCommerceCartModificationStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
COMPATIBILITY_ERROR
public static final TmaCommerceCartModificationStatus COMPATIBILITY_ERROR
Indicates a problem between cart entries compatibility policies.
-
ELIGIBILTY_ERROR
public static final TmaCommerceCartModificationStatus ELIGIBILTY_ERROR
-
-
Method Detail
-
values
public static TmaCommerceCartModificationStatus[] 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 (TmaCommerceCartModificationStatus c : TmaCommerceCartModificationStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TmaCommerceCartModificationStatus 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
-
getCode
public java.lang.String getCode()
-
-