Enum Constant and Description |
---|
CLOSED
All the graph nodes are closed.
|
CONSTRUCTED
Initial state, the graph nodes are not yet initialized.
|
INITIALIZED
All the graph nodes have been initialized.
|
PAUSED
All the graph nodes are paused.
|
RUNNING
All the graph nodes are processing data.
|
Modifier and Type | Method and Description |
---|---|
static Job.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Job.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Job.State CONSTRUCTED
public static final Job.State INITIALIZED
public static final Job.State RUNNING
public static final Job.State PAUSED
public static final Job.State CLOSED
public static Job.State[] values()
for (Job.State c : Job.State.values()) System.out.println(c);
public static Job.State 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