public static enum Status.Code extends Enum<Status.Code>
| Enum Constant and Description |
|---|
DOWNLOADED |
DOWNLOADING |
ERROR |
NEW |
SCHEDULED |
SYNCHRONIZED |
TRANSFORMED |
TRANSFORMING |
UPLOADED |
UPLOADING |
USER_ERROR |
| Modifier and Type | Method and Description |
|---|---|
static Status.Code |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Status.Code[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Status.Code NEW
public static final Status.Code SCHEDULED
public static final Status.Code DOWNLOADING
public static final Status.Code DOWNLOADED
public static final Status.Code TRANSFORMING
public static final Status.Code TRANSFORMED
public static final Status.Code UPLOADING
public static final Status.Code UPLOADED
public static final Status.Code SYNCHRONIZED
public static final Status.Code ERROR
public static final Status.Code USER_ERROR
public static Status.Code[] values()
for (Status.Code c : Status.Code.values()) System.out.println(c);
public static Status.Code 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. All Rights Reserved.