Package co.mastermindcms.modules.enums
Enum UploadType
- java.lang.Object
-
- java.lang.Enum<UploadType>
-
- co.mastermindcms.modules.enums.UploadType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<UploadType>
public enum UploadType extends java.lang.Enum<UploadType>
-
-
Enum Constant Summary
-
Constructor Summary
Constructors Modifier Constructor Description private
UploadType()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static UploadType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static UploadType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
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_TRANSLATION
public static final UploadType DATA_TRANSLATION
-
DATA_DOCUMENT_SKU
public static final UploadType DATA_DOCUMENT_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
-
BULK_ATTRIBUTE_ATTACHMENT_TO_ALL_PRODUCTS
public static final UploadType BULK_ATTRIBUTE_ATTACHMENT_TO_ALL_PRODUCTS
-
BULK_ATTRIBUTE_ATTACHMENT_TO_ALL_SKUS
public static final UploadType BULK_ATTRIBUTE_ATTACHMENT_TO_ALL_SKUS
-
SITEMAP_GENERATE
public static final UploadType SITEMAP_GENERATE
-
-
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 namejava.lang.NullPointerException
- if the argument is null
-
-