Enum InventoryType

java.lang.Object
java.lang.Enum<InventoryType>
com.broadleafcommerce.catalog.domain.type.InventoryType
All Implemented Interfaces:
Serializable, Comparable<InventoryType>

public enum InventoryType extends Enum<InventoryType>
Used to distinguish the ways that a Product's/Variant's inventory is represented. This is used to determine available fulfillment options & to split order items into different fulfillment groups (e.g. VIRTUAL products will need to be fulfilled in a different way than PHYSICAL products).
Author:
Chris Kittrell (ckittrell)
  • Enum Constant Details

    • NONE

      public static final InventoryType NONE
      Declare that the product is simply a container and that we only care to fulfill the included products. When building a merchandising product, we expect this value to be used.
    • PHYSICAL

      public static final InventoryType PHYSICAL
    • VIRTUAL

      public static final InventoryType VIRTUAL
  • Method Details

    • values

      public static InventoryType[] 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 InventoryType 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