@InterfaceAudience.Public @InterfaceStability.Unstable public enum VertexState extends Enum<VertexState>
| Enum Constant and Description | 
|---|
FAILED
Indicates that the Vertex has FAILED 
 | 
KILLED
Indicates that the Vertex has been KILLED 
 | 
PARALLELISM_UPDATED
Indicates that the parallelism for the vertex had changed. 
 | 
RUNNING
Indicates that the Vertex had entered the RUNNING state. 
 | 
SUCCEEDED
Indicates that the Vertex had entered the SUCCEEDED state. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static VertexState | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static VertexState[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final VertexState SUCCEEDED
public static final VertexState RUNNING
public static final VertexState FAILED
public static final VertexState KILLED
public static final VertexState PARALLELISM_UPDATED
public static VertexState[] values()
for (VertexState c : VertexState.values()) System.out.println(c);
public static VertexState 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 © 2014 Apache Software Foundation. All rights reserved.