public enum ExecutionVertexState extends Enum<ExecutionVertexState> implements Serializable
| Enum Constant and Description |
|---|
RUNNING
Vertex(Worker) is running.
|
TO_ADD
Vertex(Worker) to be added.
|
TO_DEL
Vertex(Worker) to be deleted.
|
UNKNOWN
Unknown status,
|
| Modifier and Type | Method and Description |
|---|---|
static ExecutionVertexState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExecutionVertexState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExecutionVertexState TO_ADD
public static final ExecutionVertexState TO_DEL
public static final ExecutionVertexState RUNNING
public static final ExecutionVertexState UNKNOWN
public final int code
public final String msg
public static ExecutionVertexState[] values()
for (ExecutionVertexState c : ExecutionVertexState.values()) System.out.println(c);
public static ExecutionVertexState 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 © 2021. All rights reserved.