public static enum UploadListener.Stage extends java.lang.Enum<UploadListener.Stage>
| Enum Constant and Description |
|---|
REQUESTING_KEY |
SERVER_PROCESSING |
UPLOADING |
| Modifier and Type | Method and Description |
|---|---|
static UploadListener.Stage |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UploadListener.Stage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UploadListener.Stage REQUESTING_KEY
public static final UploadListener.Stage UPLOADING
public static final UploadListener.Stage SERVER_PROCESSING
public static UploadListener.Stage[] values()
for (UploadListener.Stage c : UploadListener.Stage.values()) System.out.println(c);
public static UploadListener.Stage 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