Enum FulfillmentPricingStrategy

java.lang.Object
java.lang.Enum<FulfillmentPricingStrategy>
com.broadleafcommerce.fulfillment.common.domain.type.FulfillmentPricingStrategy
All Implemented Interfaces:
Serializable, Comparable<FulfillmentPricingStrategy>

public enum FulfillmentPricingStrategy extends Enum<FulfillmentPricingStrategy>
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)
  • Enum Constant Details

    • GROUP

      public static final FulfillmentPricingStrategy GROUP
      Indicates that fulfillment pricing should be applied to the Fulfillment Group, rather than each individual item.
    • ITEM

      public static final FulfillmentPricingStrategy 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

      public static FulfillmentPricingStrategy[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static FulfillmentPricingStrategy 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 name
      NullPointerException - if the argument is null