java.lang.Object
java.lang.Enum<TransferType>
com.broadleafcommerce.data.tracking.core.transition.type.TransferType
All Implemented Interfaces:
Serializable, Comparable<TransferType>, Constable

public enum TransferType extends Enum<TransferType>
Defines the possible values for transfer types for TransitionRequests. Transfer types relate to summaries, groups of summaries, or deployments of changes for which a sandbox transition is requested. A transition could be a promotion, approval, rejection, reversion, rebasing, or deployment.
  • Enum Constant Details

    • SUMMARY

      public static final TransferType SUMMARY
      This relates to a singular summary of changes for which a sandbox transition is requested.
    • SUMMARY_GROUP

      public static final TransferType SUMMARY_GROUP
      This relates to a grouping of summaries.
    • DEPLOY

      public static final TransferType DEPLOY
      This relates to a deployment of changes to production.
    • APPENDING_SUMMARY_IDS

      public static final TransferType APPENDING_SUMMARY_IDS
      This relates to a list of summary ids in a conceptual group up to the current member
  • Method Details

    • values

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

      public static TransferType valueOf(String name)
      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 name
      NullPointerException - if the argument is null