Enum Class FulfillmentPricingStrategy
java.lang.Object
java.lang.Enum<FulfillmentPricingStrategy>
com.broadleafcommerce.fulfillment.common.domain.type.FulfillmentPricingStrategy
- All Implemented Interfaces:
Serializable,Comparable<FulfillmentPricingStrategy>,Constable
Enumeration to indicate whether we should provide options and prices for the Fulfillment Group or
for each Fulfillment Item. This is specifically used by a tenant or application to indicate their
preferred Fulfillment Pricing Strategy. The default is
ITEM.- Author:
- Kelly Tisdell (ktisdell)
-
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 FulfillmentPricingStrategyReturns the enum constant of this class with the specified name.static FulfillmentPricingStrategy[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
GROUP
Indicates that fulfillment pricing should be applied to the Fulfillment Group, rather than each individual item. -
ITEM
Indicates that fulfillment pricing should be applied to the Fulfillment Item, rather than the containing Fulfillment Group. This is the default.
-
-
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
-