public static enum PhaseMonitor.JobStatus extends Enum<PhaseMonitor.JobStatus>
Enum Constant and Description |
---|
CANCELLED
Job was cancelled.
|
FAILED
Job was failed.
|
SUCCESS
Job was succeeded.
|
Modifier and Type | Method and Description |
---|---|
static PhaseMonitor.JobStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PhaseMonitor.JobStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PhaseMonitor.JobStatus SUCCESS
public static final PhaseMonitor.JobStatus CANCELLED
public static final PhaseMonitor.JobStatus FAILED
public static PhaseMonitor.JobStatus[] values()
for (PhaseMonitor.JobStatus c : PhaseMonitor.JobStatus.values()) System.out.println(c);
public static PhaseMonitor.JobStatus 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 © 2011–2019 Asakusa Framework Team. All rights reserved.