Enum UploadType

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

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

      • IMAGE_OPTION

        public static final UploadType IMAGE_OPTION
      • IMAGE_SKU

        public static final UploadType IMAGE_SKU
      • IMAGE_PROFILE_AVATAR

        public static final UploadType IMAGE_PROFILE_AVATAR
      • IMAGE_SELLER_SKU

        public static final UploadType IMAGE_SELLER_SKU
      • IMAGE_SELLER_LOGO

        public static final UploadType IMAGE_SELLER_LOGO
      • IMAGE_CATEGORY

        public static final UploadType IMAGE_CATEGORY
      • IMAGE_PRODUCT

        public static final UploadType IMAGE_PRODUCT
      • IMAGE_CERTIFICATE

        public static final UploadType IMAGE_CERTIFICATE
      • IMAGE_CERTIFICATE_COPY

        public static final UploadType IMAGE_CERTIFICATE_COPY
      • IMAGE_CONTAINER

        public static final UploadType IMAGE_CONTAINER
      • DATA_SKU

        public static final UploadType DATA_SKU
      • DATA_SELLER_SKU

        public static final UploadType DATA_SELLER_SKU
      • DATA_DOCUMENT_SELLER

        public static final UploadType DATA_DOCUMENT_SELLER
      • DATA_DOCUMENT_SELLER_SKU

        public static final UploadType DATA_DOCUMENT_SELLER_SKU
      • DATA_DOCUMENT_ORDER

        public static final UploadType DATA_DOCUMENT_ORDER
      • DATA_DOCUMENT_MESSAGE

        public static final UploadType DATA_DOCUMENT_MESSAGE
      • DATA_SEO_META_INFO

        public static final UploadType DATA_SEO_META_INFO
    • Constructor Detail

      • UploadType

        private UploadType()
    • Method Detail

      • values

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

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