Enum ItemChoiceTargetType
- java.lang.Object
-
- java.lang.Enum<ItemChoiceTargetType>
-
- com.broadleafcommerce.cartoperation.domain.ItemChoiceTargetType
-
- All Implemented Interfaces:
Serializable
,Comparable<ItemChoiceTargetType>
public enum ItemChoiceTargetType extends Enum<ItemChoiceTargetType>
The possible types of targets aItemChoice
can have.- Author:
- Chad Harchar (charchar)
- See Also:
ItemChoice
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CATEGORY
SPECIFIC_PRODUCT
The item choice is a specificProduct
.SPECIFIC_PRODUCTS
The item choice is amongProducts
from a predetermined list.SPECIFIC_VARIANT
The item choice is a specificVariant
.SPECIFIC_VARIANTS
The item choice is amongVariants
from a predetermined list.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static boolean
isCategoryTargetType(String selectionType)
static boolean
isProductsTargetType(String selectionType)
static boolean
isSpecificChoiceTargetType(String selectionType)
static boolean
isVariantsTargetType(String selectionType)
static ItemChoiceTargetType
valueOf(String name)
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 Detail
-
SPECIFIC_PRODUCT
public static final ItemChoiceTargetType SPECIFIC_PRODUCT
The item choice is a specificProduct
.- See Also:
ItemChoice.getSpecificItemChoice()
-
SPECIFIC_VARIANT
public static final ItemChoiceTargetType SPECIFIC_VARIANT
The item choice is a specificVariant
.- See Also:
ItemChoice.getSpecificItemChoice()
-
SPECIFIC_PRODUCTS
public static final ItemChoiceTargetType SPECIFIC_PRODUCTS
The item choice is amongProducts
from a predetermined list.- See Also:
ItemChoice.getSpecificChoices()
-
SPECIFIC_VARIANTS
public static final ItemChoiceTargetType SPECIFIC_VARIANTS
The item choice is amongVariants
from a predetermined list.- See Also:
ItemChoice.getSpecificChoices()
-
CATEGORY
public static final ItemChoiceTargetType 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:
ItemChoice.getCategory()
-
-
Method Detail
-
values
public static ItemChoiceTargetType[] 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 (ItemChoiceTargetType c : ItemChoiceTargetType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ItemChoiceTargetType 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
-
isVariantsTargetType
public static boolean isVariantsTargetType(String selectionType)
-
isProductsTargetType
public static boolean isProductsTargetType(String selectionType)
-
isSpecificChoiceTargetType
public static boolean isSpecificChoiceTargetType(String selectionType)
-
isCategoryTargetType
public static boolean isCategoryTargetType(String selectionType)
-
-