@InterfaceAudience.Public @InterfaceStability.Unstable public enum VertexState extends Enum<VertexState>
Enum Constant and Description |
---|
CONFIGURED
Indicates that the vertex has been completely configured.
|
FAILED
Indicates that the Vertex has FAILED
|
INITIALIZING
Indicates that the Vertex move to INITIALIZING
|
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 final VertexState CONFIGURED
public static final VertexState INITIALIZING
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 © 2024 Apache Software Foundation. All rights reserved.