public static enum FileUploadEvent.UploadType extends Enum<FileUploadEvent.UploadType>
Modifier and Type | Method and Description |
---|---|
static FileUploadEvent.UploadType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FileUploadEvent.UploadType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FileUploadEvent.UploadType ARCHIVE
public static final FileUploadEvent.UploadType FILE
public static FileUploadEvent.UploadType[] values()
for (FileUploadEvent.UploadType c : FileUploadEvent.UploadType.values()) System.out.println(c);
public static FileUploadEvent.UploadType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullCopyright © 2015. All Rights Reserved.