public static enum UploadEvent.UploadState extends Enum<UploadEvent.UploadState>
| Enum Constant and Description |
|---|
ABORTED
The upload request has been aborted.
|
DONE
The upload has completed.
|
EMPTY
No data has been loaded yet.
|
LOADING
Data is currently being loaded.
|
MAXSIZE
The file has exceeded the maximum allowable size.
|
UNKNOWN
The state is not known.
|
| Modifier and Type | Method and Description |
|---|---|
static UploadEvent.UploadState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UploadEvent.UploadState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UploadEvent.UploadState UNKNOWN
public static final UploadEvent.UploadState MAXSIZE
public static final UploadEvent.UploadState ABORTED
public static final UploadEvent.UploadState EMPTY
public static final UploadEvent.UploadState LOADING
public static final UploadEvent.UploadState DONE
public static UploadEvent.UploadState[] values()
for (UploadEvent.UploadState c : UploadEvent.UploadState.values()) System.out.println(c);
public static UploadEvent.UploadState 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 © 2017 Regenstrief Center for Biomedical Informatics. All rights reserved.