public static enum ComputerGraph.State extends Enum<ComputerGraph.State>
| Enum Constant and Description |
|---|
MAP_REDUCE |
NO_OP |
VERTEX_PROGRAM |
| Modifier and Type | Method and Description |
|---|---|
static ComputerGraph.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ComputerGraph.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComputerGraph.State VERTEX_PROGRAM
public static final ComputerGraph.State MAP_REDUCE
public static final ComputerGraph.State NO_OP
public static ComputerGraph.State[] values()
for (ComputerGraph.State c : ComputerGraph.State.values()) System.out.println(c);
public static ComputerGraph.State 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 © 2013–2015 Apache Software Foundation. All rights reserved.