public enum TraverserReturnType extends Enum<TraverserReturnType>
| Enum Constant and Description |
|---|
fullpath |
node |
path |
relationship |
| Modifier and Type | Field and Description |
|---|---|
org.neo4j.server.rest.repr.RepresentationType |
repType |
| Modifier and Type | Method and Description |
|---|---|
abstract org.neo4j.server.rest.repr.Representation |
toRepresentation(org.neo4j.graphdb.Path position) |
static TraverserReturnType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TraverserReturnType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TraverserReturnType node
public static final TraverserReturnType relationship
public static final TraverserReturnType path
public static final TraverserReturnType fullpath
public static TraverserReturnType[] values()
for (TraverserReturnType c : TraverserReturnType.values()) System.out.println(c);
public static TraverserReturnType 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 nullpublic abstract org.neo4j.server.rest.repr.Representation toRepresentation(org.neo4j.graphdb.Path position)
Copyright © 2002–2017 The Neo4j Graph Database Project. All rights reserved.