Package | Description |
---|---|
org.neo4j.graphdb |
The core graph database API.
|
org.neo4j.graphdb.factory |
Create database instances.
|
org.neo4j.graphdb.index |
Integrated API for node and relationship indexing.
|
org.neo4j.helpers |
Common Java utilities.
|
org.neo4j.tooling |
Tools, including global operations over the whole graph.
|
Modifier and Type | Method and Description |
---|---|
GraphDatabaseService |
PropertyContainer.getGraphDatabase()
|
Modifier and Type | Method and Description |
---|---|
GraphDatabaseService |
GraphDatabaseBuilder.DatabaseCreator.newDatabase(Map<String,String> config) |
GraphDatabaseService |
GraphDatabaseFactory.newEmbeddedDatabase(File storeDir) |
GraphDatabaseService |
GraphDatabaseFactory.newEmbeddedDatabase(String storeDir)
Deprecated.
use
GraphDatabaseFactory.newEmbeddedDatabase(File) instead. |
GraphDatabaseService |
GraphDatabaseBuilder.newGraphDatabase()
Create a new database with the configuration registered
through the builder.
|
GraphDatabaseService |
GraphDatabaseBuilder.Delegator.newGraphDatabase() |
Modifier and Type | Method and Description |
---|---|
GraphDatabaseService |
ReadableIndex.getGraphDatabase()
Get the
graph database that owns this index. |
Constructor and Description |
---|
UniqueFactory.UniqueNodeFactory(GraphDatabaseService graphdb,
String index)
Create a new
UniqueFactory for nodes. |
UniqueFactory.UniqueRelationshipFactory(GraphDatabaseService graphdb,
String index)
Create a new
UniqueFactory for relationships. |
Modifier and Type | Method and Description |
---|---|
TransactionTemplate |
TransactionTemplate.with(GraphDatabaseService gds) |
Constructor and Description |
---|
TransactionTemplate(GraphDatabaseService gds,
TransactionTemplate.Monitor monitor,
int retries,
long backoff,
Predicate<Throwable> retryPredicate) |
TransactionTemplate(GraphDatabaseService gds,
TransactionTemplate.Monitor monitor,
int retries,
long backoff,
org.neo4j.function.Predicate<Throwable> retryPredicate) |
Modifier and Type | Method and Description |
---|---|
static GlobalGraphOperations |
GlobalGraphOperations.at(GraphDatabaseService db)
Get a
GlobalGraphOperations for the given db . |
Copyright © 2002–2015 The Neo4j Graph Database Project. All rights reserved.