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.tooling |
Tools, including global operations over the whole graph.
|
org.neo4j.unsafe.batchinsert |
Tools for high-performance data insertion; make sure to read the instructions before using.
|
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(String path) |
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 |
---|---|
static GlobalGraphOperations |
GlobalGraphOperations.at(GraphDatabaseService db)
Get a
GlobalGraphOperations for the given db . |
Modifier and Type | Method and Description |
---|---|
static GraphDatabaseService |
BatchInserters.batchDatabase(String storeDir)
Get a
GraphDatabaseService that does not support deletions and
transactions. |
static GraphDatabaseService |
BatchInserters.batchDatabase(String storeDir,
org.neo4j.kernel.impl.nioneo.store.FileSystemAbstraction fileSystem)
Get a
GraphDatabaseService that does not support deletions and
transactions. |
static GraphDatabaseService |
BatchInserters.batchDatabase(String storeDir,
org.neo4j.kernel.impl.nioneo.store.FileSystemAbstraction fileSystem,
Map<String,String> config)
Get a
GraphDatabaseService that does not support deletions and
transactions. |
static GraphDatabaseService |
BatchInserters.batchDatabase(String storeDir,
org.neo4j.kernel.impl.nioneo.store.FileSystemAbstraction fileSystem,
Map<String,String> config,
Iterable<org.neo4j.kernel.extension.KernelExtensionFactory<?>> kernelExtensions) |
static GraphDatabaseService |
BatchInserters.batchDatabase(String storeDir,
Map<String,String> config)
Get a
GraphDatabaseService that does not support deletions and
transactions. |
Copyright © 2002–2015 The Neo4j Graph Database Project. All rights reserved.