public enum VertexState extends Enum<VertexState>
| Enum Constant and Description |
|---|
COMMITTING |
ERROR |
FAILED |
INITED |
INITIALIZING |
KILLED |
NEW |
RUNNING |
SUCCEEDED |
TERMINATING |
| 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 NEW
public static final VertexState INITIALIZING
public static final VertexState INITED
public static final VertexState RUNNING
public static final VertexState SUCCEEDED
public static final VertexState FAILED
public static final VertexState KILLED
public static final VertexState ERROR
public static final VertexState TERMINATING
public static final VertexState COMMITTING
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 © 2019 Apache Software Foundation. All rights reserved.