public static enum CmsUploadState.UploadType extends java.lang.Enum<CmsUploadState.UploadType>
| Enum Constant and Description |
|---|
multifile
Multi file upload.
|
singlefile
Single file upload.
|
| Modifier and Type | Method and Description |
|---|---|
static CmsUploadState.UploadType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CmsUploadState.UploadType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CmsUploadState.UploadType multifile
public static final CmsUploadState.UploadType singlefile
public static CmsUploadState.UploadType[] values()
for (CmsUploadState.UploadType c : CmsUploadState.UploadType.values()) System.out.println(c);
public static CmsUploadState.UploadType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null