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
Enum Constants Enum Constant Description DATA_DOCUMENT_ORDER
DATA_DOCUMENT_SELLER
DATA_DOCUMENT_SELLER_SKU
DATA_SELLER_SKU
DATA_SEO_META_INFO
DATA_SKU
IMAGE_CATEGORY
IMAGE_CERTIFICATE
IMAGE_CONTAINER
IMAGE_PRODUCT
IMAGE_SELLER_LOGO
IMAGE_SELLER_SKU
IMAGE_SKU
-
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_SKU
public static final UploadType IMAGE_SKU
-
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_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_SEO_META_INFO
public static final UploadType DATA_SEO_META_INFO
-
-
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
-
-