Enum Class ItemChoiceTargetType
java.lang.Object
java.lang.Enum<ItemChoiceTargetType>
com.broadleafcommerce.cartoperation.domain.ItemChoiceTargetType
- All Implemented Interfaces:
Serializable
,Comparable<ItemChoiceTargetType>
,Constable
The possible types of targets a
ItemChoice
can have.- Author:
- Chad Harchar (charchar)
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic boolean
isCategoryTargetType
(String selectionType) static boolean
isProductsTargetType
(String selectionType) static boolean
isSpecificChoiceTargetType
(String selectionType) Checks if the selection isSPECIFIC_PRODUCTS
orSPECIFIC_VARIANTS
(plural.static boolean
isSpecificItemChoiceTargetType
(String itemChoiceTargetType) Checks if the selection isSPECIFIC_PRODUCT
orSPECIFIC_VARIANT
(singular).static boolean
isVariantsTargetType
(String selectionType) static ItemChoiceTargetType
Returns the enum constant of this class with the specified name.static ItemChoiceTargetType[]
values()
Returns an array containing the constants of this enum class, 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 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
-
isVariantsTargetType
-
isProductsTargetType
-
isSpecificChoiceTargetType
Checks if the selection isSPECIFIC_PRODUCTS
orSPECIFIC_VARIANTS
(plural. -
isCategoryTargetType
-
isSpecificItemChoiceTargetType
Checks if the selection isSPECIFIC_PRODUCT
orSPECIFIC_VARIANT
(singular).
-