Package | Description |
---|---|
org.neo4j.graphdb |
The core graph database API.
|
org.neo4j.graphdb.event |
Event framework.
|
org.neo4j.graphdb.index |
Integrated API for node and relationship indexing.
|
Modifier and Type | Interface and Description |
---|---|
interface |
Entity
An Entity is a
PropertyContainer that is persisted in the database, and identified by an id . |
interface |
Node
A node in the graph with properties and relationships to other entities.
|
interface |
Relationship
A relationship between two nodes in the graph.
|
Modifier and Type | Method and Description |
---|---|
Iterator<PropertyContainer> |
Path.iterator()
Iterates through both the
Node s and Relationship s of this
path in order. |
Modifier and Type | Method and Description |
---|---|
Lock |
Transaction.acquireReadLock(PropertyContainer entity)
Acquires a read lock for
entity for this transaction. |
Lock |
Transaction.acquireWriteLock(PropertyContainer entity)
Acquires a write lock for
entity for this transaction. |
Modifier and Type | Interface and Description |
---|---|
interface |
PropertyEntry<T extends PropertyContainer>
Represents a changed property.
|
Modifier and Type | Interface and Description |
---|---|
interface |
AutoIndexer<T extends PropertyContainer>
Deprecated.
this feature will be removed in the next major release. Please consider using schema indexes instead.
|
interface |
Index<T extends PropertyContainer>
Deprecated.
This API will be removed in the next major release. Please consider using schema indexes instead.
|
interface |
ReadableIndex<T extends PropertyContainer>
Deprecated.
This API will be removed in next major release. Please consider using schema indexes instead.
|
class |
UniqueFactory<T extends PropertyContainer>
Deprecated.
This API will be removed in next major release. Please consider using schema constraints and the Cypher
MERGE clause instead. |
static class |
UniqueFactory.UniqueEntity<T extends PropertyContainer>
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
Map<String,String> |
IndexManager.getConfiguration(Index<? extends PropertyContainer> index)
Deprecated.
|
String |
IndexManager.removeConfiguration(Index<? extends PropertyContainer> index,
String key)
Deprecated.
|
String |
IndexManager.setConfiguration(Index<? extends PropertyContainer> index,
String key,
String value)
Deprecated.
|
Copyright © 2002–2018 The Neo4j Graph Database Project. All rights reserved.