Enum TransferType

  • All Implemented Interfaces:
    Serializable, Comparable<TransferType>

    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 Detail

      • 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 Detail

      • values

        public static TransferType[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (TransferType c : TransferType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

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