Enum CartPricingTargetType
- java.lang.Object
-
- java.lang.Enum<CartPricingTargetType>
-
- com.broadleafcommerce.cartoperation.domain.CartPricingTargetType
-
- All Implemented Interfaces:
Serializable
,Comparable<CartPricingTargetType>
public enum CartPricingTargetType extends Enum<CartPricingTargetType>
- Author:
- Chad Harchar (charchar)
-
-
Enum Constant Summary
Enum Constants Enum Constant Description PRICING_KEY
SKU
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CartPricingTargetType
valueOf(String name)
Returns the enum constant of this type with the specified name.static CartPricingTargetType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SKU
public static final CartPricingTargetType SKU
-
PRICING_KEY
public static final CartPricingTargetType PRICING_KEY
-
-
Method Detail
-
values
public static CartPricingTargetType[] 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 (CartPricingTargetType c : CartPricingTargetType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CartPricingTargetType 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
-
-