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 aItemChoicecan have.- Author:
- Chad Harchar (charchar)
- See Also:
ItemChoice
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CATEGORYSPECIFIC_PRODUCTThe item choice is a specificProduct.SPECIFIC_PRODUCTSThe item choice is amongProductsfrom a predetermined list.SPECIFIC_VARIANTThe item choice is a specificVariant.SPECIFIC_VARIANTSThe item choice is amongVariantsfrom a predetermined list.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static booleanisCategoryTargetType(String selectionType)static booleanisProductsTargetType(String selectionType)static booleanisSpecificChoiceTargetType(String selectionType)static booleanisVariantsTargetType(String selectionType)static ItemChoiceTargetTypevalueOf(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 amongProductsfrom a predetermined list.- See Also:
ItemChoice.getSpecificChoices()
-
SPECIFIC_VARIANTS
public static final ItemChoiceTargetType SPECIFIC_VARIANTS
The item choice is amongVariantsfrom a predetermined list.- See Also:
ItemChoice.getSpecificChoices()
-
CATEGORY
public static final ItemChoiceTargetType CATEGORY
The item choice is amongProductswithin aCategory. Used as a convenience over specifying an explicit set of products withSPECIFIC_PRODUCTSand 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)
-
-