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.kernel |
Implementation for embedding a Neo4j graph database in an application.
|
org.neo4j.tooling | |
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. |
protected GraphDatabaseService |
UniqueFactory.graphDatabase()
Get the
graph database of the referenced 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 | Interface and Description |
---|---|
interface |
GraphDatabaseAPI
This API can be used to get access to services.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractGraphDatabase |
class |
EmbeddedGraphDatabase
An implementation of
GraphDatabaseService that is used to embed Neo4j
in an application. |
class |
EmbeddedReadOnlyGraphDatabase
A read-only version of
EmbeddedGraphDatabase . |
class |
InternalAbstractGraphDatabase
Base implementation of GraphDatabaseService.
|
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<KernelExtensionFactory<?>> kernelExtensions) |
static GraphDatabaseService |
BatchInserters.batchDatabase(String storeDir,
Map<String,String> config)
Get a
GraphDatabaseService that does not support deletions and
transactions. |
Copyright © 2002-2013 The Neo4j Graph Database Project. All Rights Reserved.