public enum Neo4jDirection extends Enum<Neo4jDirection>
| Modifier and Type | Method and Description |
|---|---|
static Neo4jDirection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Neo4jDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Neo4jDirection INCOMING
public static final Neo4jDirection OUTGOING
public static final Neo4jDirection BOTH
public static Neo4jDirection[] values()
for (Neo4jDirection c : Neo4jDirection.values()) System.out.println(c);
public static Neo4jDirection 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 © 2015 Neo Technology, Inc.. All rights reserved.