public enum CompileStatus extends Enum<CompileStatus>
| Modifier and Type | Method and Description | 
|---|---|
static CompileStatus | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static CompileStatus[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final CompileStatus WAITING
public static final CompileStatus RUNNING
public static final CompileStatus FINISHED
public static final CompileStatus ERROR
public static CompileStatus[] values()
for (CompileStatus c : CompileStatus.values()) System.out.println(c);
public static CompileStatus 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