Enum Class DefaultCartApprovalProcessFailureTypes
java.lang.Object
java.lang.Enum<DefaultCartApprovalProcessFailureTypes>
com.broadleafcommerce.cartoperation.domain.enums.DefaultCartApprovalProcessFailureTypes
- All Implemented Interfaces:
CartApprovalProcessFailureType
,Serializable
,Comparable<DefaultCartApprovalProcessFailureTypes>
,Constable
public enum DefaultCartApprovalProcessFailureTypes
extends Enum<DefaultCartApprovalProcessFailureTypes>
implements CartApprovalProcessFailureType
The default set of cart approval process failure types.
- Author:
- Susana Cruz
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionRepresents the error where the customer doesn't have access to a cart.The cart is in an invalid status to request approval or rejecting. -
Method Summary
Modifier and TypeMethodDescriptionstatic boolean
isInvalidAccess
(String failureType) static boolean
isInvalidCartStatusFailure
(String failureType) Returns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
clone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
Methods inherited from interface com.broadleafcommerce.cartoperation.domain.enums.CartApprovalProcessFailureType
name
-
Enum Constant Details
-
INVALID_CART_STATUS
The cart is in an invalid status to request approval or rejecting. -
INVALID_CART_ACCESS
Represents the error where the customer doesn't have access to a cart.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
isInvalidCartStatusFailure
-
isInvalidAccess
-
getMessagePath
- Specified by:
getMessagePath
in interfaceCartApprovalProcessFailureType
-