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
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic booleanisCategoryTargetType(String selectionType) static booleanisProductsTargetType(String selectionType) static booleanisSpecificChoiceTargetType(String selectionType) Checks if the selection isSPECIFIC_PRODUCTSorSPECIFIC_VARIANTS(plural.static booleanisSpecificItemChoiceTargetType(String itemChoiceTargetType) Checks if the selection isSPECIFIC_PRODUCTorSPECIFIC_VARIANT(singular).static booleanisVariantsTargetType(String selectionType) static ItemChoiceTargetTypeReturns 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 amongProductsfrom a predetermined list.- See Also:
-
SPECIFIC_VARIANTS
The item choice is amongVariantsfrom a predetermined list.- See Also:
-
CATEGORY
The item choice is amongProductswithin aCategory. Used as a convenience over specifying an explicit set of products withSPECIFIC_PRODUCTSand 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_PRODUCTSorSPECIFIC_VARIANTS(plural. -
isCategoryTargetType
-
isSpecificItemChoiceTargetType
Checks if the selection isSPECIFIC_PRODUCTorSPECIFIC_VARIANT(singular).
-