Enum BatchType

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<BatchType>

    public enum BatchType
    extends java.lang.Enum<BatchType>
    • Enum Constant Detail

      • AvaCertUpdate

        public static final BatchType AvaCertUpdate
      • AvaCertUpdateAll

        public static final BatchType AvaCertUpdateAll
      • BatchMaintenance

        public static final BatchType BatchMaintenance
      • CompanyLocationImport

        public static final BatchType CompanyLocationImport
      • DocumentImport

        public static final BatchType DocumentImport
      • ExemptCertImport

        public static final BatchType ExemptCertImport
      • ItemImport

        public static final BatchType ItemImport
      • SalesAuditExport

        public static final BatchType SalesAuditExport
      • SstpTestDeckImport

        public static final BatchType SstpTestDeckImport
      • TaxRuleImport

        public static final BatchType TaxRuleImport
      • TransactionImport

        public static final BatchType TransactionImport
      • UPCBulkImport

        public static final BatchType UPCBulkImport
      • UPCValidationImport

        public static final BatchType UPCValidationImport
      • CustomerSupplierImport

        public static final BatchType CustomerSupplierImport
    • Method Detail

      • values

        public static BatchType[] 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 (BatchType c : BatchType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static BatchType valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • valueOf

        public static BatchType valueOf​(int intValue)
        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:
        intValue - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • getValue

        public int getValue()