public enum ProcessingStatus extends Enum<ProcessingStatus>
| Modifier and Type | Method and Description | 
|---|---|
static ProcessingStatus | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static ProcessingStatus[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final ProcessingStatus pending
public static final ProcessingStatus running
public static final ProcessingStatus failed
public static final ProcessingStatus success
public static ProcessingStatus[] values()
for (ProcessingStatus c : ProcessingStatus.values()) System.out.println(c);
public static ProcessingStatus 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 © 2015 SeqWare. All rights reserved.