Enum ValidationStrategy
- java.lang.Object
-
- java.lang.Enum<ValidationStrategy>
-
- com.broadleafcommerce.cartoperation.domain.ValidationStrategy
-
- All Implemented Interfaces:
Serializable
,Comparable<ValidationStrategy>
public enum ValidationStrategy extends Enum<ValidationStrategy>
Supported strategies determining whengeneric choices
are validated.- Author:
- Chad Harchar (charchar)
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADD_ITEM
Validate when the item is added to cartSUBMIT_ORDER
Allow the item to be added to the cart, but validate when the cart is submitted for checkout
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ValidationStrategy
valueOf(String name)
Returns the enum constant of this type with the specified name.static ValidationStrategy[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ADD_ITEM
public static final ValidationStrategy ADD_ITEM
Validate when the item is added to cart
-
SUBMIT_ORDER
public static final ValidationStrategy SUBMIT_ORDER
Allow the item to be added to the cart, but validate when the cart is submitted for checkout
-
-
Method Detail
-
values
public static ValidationStrategy[] 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 (ValidationStrategy c : ValidationStrategy.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ValidationStrategy valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-