public enum RelationshipChainField extends Enum<RelationshipChainField>
| Enum Constant and Description |
|---|
FIRST_NEXT |
FIRST_PREV |
SECOND_NEXT |
SECOND_PREV |
| Modifier and Type | Method and Description |
|---|---|
abstract boolean |
endOfChain(org.neo4j.kernel.impl.store.record.RelationshipRecord rel) |
abstract long |
relOf(org.neo4j.kernel.impl.store.record.RelationshipRecord rel) |
static RelationshipChainField |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RelationshipChainField[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RelationshipChainField FIRST_NEXT
public static final RelationshipChainField FIRST_PREV
public static final RelationshipChainField SECOND_NEXT
public static final RelationshipChainField SECOND_PREV
public static RelationshipChainField[] values()
for (RelationshipChainField c : RelationshipChainField.values()) System.out.println(c);
public static RelationshipChainField 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 long relOf(org.neo4j.kernel.impl.store.record.RelationshipRecord rel)
public abstract boolean endOfChain(org.neo4j.kernel.impl.store.record.RelationshipRecord rel)
Copyright © 2002–2017 The Neo4j Graph Database Project. All rights reserved.