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 a future release, please consider using schema indexes instead
|
interface |
Index<T extends PropertyContainer>
An index to associate key/value pairs with entities (
Node s or
Relationship s) for fast lookup and querying. |
interface |
ReadableIndex<T extends PropertyContainer>
An index that allows for read only operations.
|
class |
UniqueFactory<T extends PropertyContainer>
A utility class for creating unique (with regard to a given index) entities.
|
static class |
UniqueFactory.UniqueEntity<T extends PropertyContainer> |
Modifier and Type | Method and Description |
---|---|
Map<String,String> |
IndexManager.getConfiguration(Index<? extends PropertyContainer> index)
Returns the configuration for
index . |
String |
IndexManager.removeConfiguration(Index<? extends PropertyContainer> index,
String key)
EXPERT: Removes a configuration parameter from an index.
|
String |
IndexManager.setConfiguration(Index<? extends PropertyContainer> index,
String key,
String value)
EXPERT: Sets a configuration parameter for an index.
|
Copyright © 2002–2018 The Neo4j Graph Database Project. All rights reserved.