Enum DefaultCatalogType

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

public enum DefaultCatalogType extends Enum<DefaultCatalogType>
Defines the default types a Catalog can be. This indicates the type of content grouped by the catalog such as product information or digital content (pages, widgets, etc.). This is intended as a way to take advantage of all the framework infrastructure for inheritance and multitenancy without duplicating it between Product and Digital content.
Author:
Nathan Moore (nathandmoore)
  • Enum Constant Details

  • Method Details

    • values

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