public enum JobStateInternal extends Enum<JobStateInternal>
Enum Constant and Description |
---|
COMMITTING |
ERROR |
FAIL_ABORT |
FAIL_WAIT |
FAILED |
INITED |
KILL_ABORT |
KILL_WAIT |
KILLED |
NEW |
REBOOT |
RUNNING |
SETUP |
SUCCEEDED |
Modifier and Type | Method and Description |
---|---|
static JobStateInternal |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JobStateInternal[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JobStateInternal NEW
public static final JobStateInternal SETUP
public static final JobStateInternal INITED
public static final JobStateInternal RUNNING
public static final JobStateInternal COMMITTING
public static final JobStateInternal SUCCEEDED
public static final JobStateInternal FAIL_WAIT
public static final JobStateInternal FAIL_ABORT
public static final JobStateInternal FAILED
public static final JobStateInternal KILL_WAIT
public static final JobStateInternal KILL_ABORT
public static final JobStateInternal KILLED
public static final JobStateInternal ERROR
public static final JobStateInternal REBOOT
public static JobStateInternal[] values()
for (JobStateInternal c : JobStateInternal.values()) System.out.println(c);
public static JobStateInternal 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 © 2008–2024 Apache Software Foundation. All rights reserved.