public static enum GraphComputer.Isolation extends Enum<GraphComputer.Isolation>
| Enum Constant and Description |
|---|
BSP
Computations are carried out in a bulk synchronous manner.
|
DIRTY_BSP
Computations are carried out in an bulk asynchronous manner.
|
| Modifier and Type | Method and Description |
|---|---|
static GraphComputer.Isolation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GraphComputer.Isolation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GraphComputer.Isolation BSP
public static final GraphComputer.Isolation DIRTY_BSP
public static GraphComputer.Isolation[] values()
for (GraphComputer.Isolation c : GraphComputer.Isolation.values()) System.out.println(c);
public static GraphComputer.Isolation 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.