public static enum Job.Health extends java.lang.Enum<Job.Health>
Enum Constant and Description |
---|
HEALTHY
All graph nodes in the job are healthy.
|
UNHEALTHY
The execution of at least one graph node in the job has stopped
because of an abnormal condition.
|
Modifier and Type | Method and Description |
---|---|
static Job.Health |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Job.Health[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Job.Health HEALTHY
public static final Job.Health UNHEALTHY
public static Job.Health[] values()
for (Job.Health c : Job.Health.values()) System.out.println(c);
public static Job.Health valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright © 2016 The Apache Software Foundation. All Rights Reserved - bbe71fa-20161201-1641