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