Enum ItemChoiceTargetType
java.lang.Object
java.lang.Enum<ItemChoiceTargetType>
com.broadleafcommerce.cartoperation.domain.ItemChoiceTargetType
- All Implemented Interfaces:
Serializable
,Comparable<ItemChoiceTargetType>
The possible types of targets a
ItemChoice
can have.- Author:
- Chad Harchar (charchar)
- See Also:
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic boolean
isCategoryTargetType
(String selectionType) static boolean
isProductsTargetType
(String selectionType) static boolean
isSpecificChoiceTargetType
(String selectionType) static boolean
isVariantsTargetType
(String selectionType) static ItemChoiceTargetType
Returns the enum constant of this type with the specified name.static ItemChoiceTargetType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
SPECIFIC_PRODUCT
The item choice is a specificProduct
.- See Also:
-
SPECIFIC_VARIANT
The item choice is a specificVariant
.- See Also:
-
SPECIFIC_PRODUCTS
The item choice is amongProducts
from a predetermined list.- See Also:
-
SPECIFIC_VARIANTS
The item choice is amongVariants
from a predetermined list.- See Also:
-
CATEGORY
The item choice is amongProducts
within aCategory
. Used as a convenience over specifying an explicit set of products withSPECIFIC_PRODUCTS
and anSpecificItemChoice
.- See Also:
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
isVariantsTargetType
-
isProductsTargetType
-
isSpecificChoiceTargetType
-
isCategoryTargetType
-