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