| Package | Description |
|---|---|
| org.neo4j.driver |
| Modifier and Type | Method and Description |
|---|---|
static Driver |
GraphDatabase.driver(String uri)
Return a driver for a Neo4j instance with the default configuration settings
|
static Driver |
GraphDatabase.driver(String uri,
AuthToken authToken)
Return a driver for a Neo4j instance with the default configuration settings
|
static Driver |
GraphDatabase.driver(String uri,
AuthToken authToken,
Config config)
Return a driver for a Neo4j instance with custom configuration.
|
static Driver |
GraphDatabase.driver(String uri,
Config config)
Return a driver for a Neo4j instance with custom configuration.
|
static Driver |
GraphDatabase.driver(URI uri)
Return a driver for a Neo4j instance with the default configuration settings
|
static Driver |
GraphDatabase.driver(URI uri,
AuthToken authToken)
Return a driver for a Neo4j instance with the default configuration settings
|
static Driver |
GraphDatabase.driver(URI uri,
AuthToken authToken,
Config config)
Return a driver for a Neo4j instance with custom configuration.
|
static Driver |
GraphDatabase.driver(URI uri,
Config config)
Return a driver for a Neo4j instance with custom configuration.
|
static Driver |
GraphDatabase.routingDriver(Iterable<URI> routingUris,
AuthToken authToken,
Config config)
Try to create a neo4j driver from the first available address.
|