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