public static enum BoxZipDownloadStatus.State extends Enum<BoxZipDownloadStatus.State>
| Enum Constant and Description |
|---|
FAILED
Failed when downloading.
|
IN_PROGRESS
Downloading in progress.
|
SUCCEEDED
Succeeded in downloading.
|
| Modifier and Type | Method and Description |
|---|---|
static BoxZipDownloadStatus.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BoxZipDownloadStatus.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BoxZipDownloadStatus.State SUCCEEDED
public static final BoxZipDownloadStatus.State IN_PROGRESS
public static final BoxZipDownloadStatus.State FAILED
public static BoxZipDownloadStatus.State[] values()
for (BoxZipDownloadStatus.State c : BoxZipDownloadStatus.State.values()) System.out.println(c);
public static BoxZipDownloadStatus.State 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 null