public static enum Upload.UploadState extends Enum<Upload.UploadState> implements EnumValue<Integer>
Enum Constant and Description |
---|
Cancelled |
Complete |
CopyingChunks |
InProgress |
Modifier and Type | Method and Description |
---|---|
Integer |
getValue() |
static Upload.UploadState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Upload.UploadState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Upload.UploadState CopyingChunks
public static final Upload.UploadState Complete
public static final Upload.UploadState Cancelled
public static final Upload.UploadState InProgress
public static Upload.UploadState[] values()
for (Upload.UploadState c : Upload.UploadState.values()) System.out.println(c);
public static Upload.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 © 2014 Equilibrium. All rights reserved.