A B C D E F G H I K L N O P R S T V W 

A

asBoolean() - Method in interface org.neo4j.driver.v1.Value
 
asDouble() - Method in interface org.neo4j.driver.v1.Value
Returns a Java double if no precision is lost in the conversion.
asEntity() - Method in interface org.neo4j.driver.v1.Value
 
asFloat() - Method in interface org.neo4j.driver.v1.Value
Returns a Java float if no precision is lost in the conversion.
asInt() - Method in interface org.neo4j.driver.v1.Value
Returns a Java int if no precision is lost in the conversion.
asList() - Method in interface org.neo4j.driver.v1.Value
If the underlying type can be viewed as a list, returns a java list of values, where each value has been converted using Value.asObject().
asList(Function<Value, T>) - Method in interface org.neo4j.driver.v1.Value
 
asLong() - Method in interface org.neo4j.driver.v1.Value
Returns a Java long if no precision is lost in the conversion.
asMap() - Method in interface org.neo4j.driver.v1.Record
Return this record as a map, where each value has been converted to a default java object using Value.asObject().
asMap(Function<Value, T>) - Method in interface org.neo4j.driver.v1.Record
Return this record as a map, where each value has been converted using the provided mapping function.
asNode() - Method in interface org.neo4j.driver.v1.Value
 
asNumber() - Method in interface org.neo4j.driver.v1.Value
 
asObject() - Method in interface org.neo4j.driver.v1.Value
This returns a java standard library representation of the underlying value, using a java type that is "sensible" given the underlying type.
asPath() - Method in interface org.neo4j.driver.v1.Value
 
asRelationship() - Method in interface org.neo4j.driver.v1.Value
 
asString() - Method in interface org.neo4j.driver.v1.Value
 
AuthToken - Interface in org.neo4j.driver.v1
This is a combination of a Principal, for instance a username, and one or more Credentials, for instance a password.
AuthTokens - Class in org.neo4j.driver.v1
This is a listing of the various methods of authentication supported by this driver.
AuthTokens() - Constructor for class org.neo4j.driver.v1.AuthTokens
 

B

basic(String, String) - Static method in class org.neo4j.driver.v1.AuthTokens
The basic authentication scheme, using a username and a password.
beginTransaction() - Method in interface org.neo4j.driver.v1.Session
Begin a new transaction in this session.
build() - Static method in class org.neo4j.driver.v1.Config
Return a Config.ConfigBuilder instance

C

certFile() - Method in class org.neo4j.driver.v1.Config.TrustStrategy
 
ClientException - Exception in org.neo4j.driver.v1.exceptions
A ClientException indicates that the client has carried out an operation incorrectly.
ClientException(String) - Constructor for exception org.neo4j.driver.v1.exceptions.ClientException
 
ClientException(String, Throwable) - Constructor for exception org.neo4j.driver.v1.exceptions.ClientException
 
ClientException(String, String) - Constructor for exception org.neo4j.driver.v1.exceptions.ClientException
 
close() - Method in interface org.neo4j.driver.v1.Driver
Close all the resources assigned to this driver
close() - Method in interface org.neo4j.driver.v1.Session
Signal that you are done using this session.
close() - Method in interface org.neo4j.driver.v1.Transaction
Closing the transaction will complete it - it will commit if Transaction.success() has been called.
column(int) - Static method in class org.neo4j.driver.v1.Records
 
column(String) - Static method in class org.neo4j.driver.v1.Records
 
column(int, Function<Value, T>) - Static method in class org.neo4j.driver.v1.Records
 
column(String, Function<Value, T>) - Static method in class org.neo4j.driver.v1.Records
 
Config - Class in org.neo4j.driver.v1
A configuration class to config driver properties.
Config.ConfigBuilder - Class in org.neo4j.driver.v1
Used to build new config instances
Config.EncryptionLevel - Enum in org.neo4j.driver.v1
Control the level of encryption to require
Config.TrustStrategy - Class in org.neo4j.driver.v1
Control how the driver determines if it can trust the encryption certificates provided by the Neo4j instance it is connected to.
Config.TrustStrategy.Strategy - Enum in org.neo4j.driver.v1
 
connectionPoolSize() - Method in class org.neo4j.driver.v1.Config
Max number of connections per URL for this driver.
consume() - Method in interface org.neo4j.driver.v1.StatementResult
Consume the entire result, yielding a summary of it.
containsKey(String) - Method in interface org.neo4j.driver.v1.Record
Check if the list of keys contains the given key

D

DatabaseException - Exception in org.neo4j.driver.v1.exceptions
A DatabaseException indicates that there is a problem within the underlying database.
DatabaseException(String, String) - Constructor for exception org.neo4j.driver.v1.exceptions.DatabaseException
 
defaultConfig() - Static method in class org.neo4j.driver.v1.Config
 
Driver - Interface in org.neo4j.driver.v1
A Neo4j database driver, through which you can create sessions to run statements against the database.
driver(String) - Static method in class org.neo4j.driver.v1.GraphDatabase
Return a driver for a Neo4j instance with the default configuration settings
driver(URI) - Static method in class org.neo4j.driver.v1.GraphDatabase
Return a driver for a Neo4j instance with the default configuration settings
driver(URI, Config) - Static method in class org.neo4j.driver.v1.GraphDatabase
Return a driver for a Neo4j instance with custom configuration.
driver(String, Config) - Static method in class org.neo4j.driver.v1.GraphDatabase
Return a driver for a Neo4j instance with custom configuration.
driver(String, AuthToken) - Static method in class org.neo4j.driver.v1.GraphDatabase
Return a driver for a Neo4j instance with the default configuration settings
driver(URI, AuthToken) - Static method in class org.neo4j.driver.v1.GraphDatabase
Return a driver for a Neo4j instance with the default configuration settings
driver(String, AuthToken, Config) - Static method in class org.neo4j.driver.v1.GraphDatabase
Return a driver for a Neo4j instance with custom configuration.
driver(URI, AuthToken, Config) - Static method in class org.neo4j.driver.v1.GraphDatabase
Return a driver for a Neo4j instance with custom configuration.

E

EmptyMap - Static variable in class org.neo4j.driver.v1.Values
 
encryptionLevel() - Method in class org.neo4j.driver.v1.Config
 
equals(Object) - Method in interface org.neo4j.driver.v1.Record
 
equals(Object) - Method in class org.neo4j.driver.v1.Statement
 
equals(Object) - Method in interface org.neo4j.driver.v1.Value
 

F

failure() - Method in interface org.neo4j.driver.v1.Transaction
Mark this transaction as failed.
fields() - Method in interface org.neo4j.driver.v1.Record
Retrieve all record fields

G

get(String) - Method in interface org.neo4j.driver.v1.Record
Retrieve the value of the property with the given key
get(int) - Method in interface org.neo4j.driver.v1.Record
Retrieve the value at the given field index
get(int) - Method in interface org.neo4j.driver.v1.Value
Retrieve the value at the given index
GraphDatabase - Class in org.neo4j.driver.v1
Creates drivers, optionally letting you GraphDatabase.driver(URI, Config) to configure them.
GraphDatabase() - Constructor for class org.neo4j.driver.v1.GraphDatabase
 

H

hashCode() - Method in interface org.neo4j.driver.v1.Record
 
hashCode() - Method in class org.neo4j.driver.v1.Statement
 
hashCode() - Method in interface org.neo4j.driver.v1.Value
 
hasNext() - Method in interface org.neo4j.driver.v1.StatementResult
Test if there is another record we can navigate to in this result.
hasType(Type) - Method in interface org.neo4j.driver.v1.Value
Test if this value is a value of the given type

I

idleTimeBeforeConnectionTest() - Method in class org.neo4j.driver.v1.Config
Pooled connections that have been unused for longer than this timeout will be tested before they are used again, to ensure they are still live.
index(String) - Method in interface org.neo4j.driver.v1.Record
Retrieve the index of the field with the given key
isEmpty() - Method in interface org.neo4j.driver.v1.Value
If this value represents a list or map, test if the collection is empty.
isFalse() - Method in interface org.neo4j.driver.v1.Value
 
isNull() - Method in interface org.neo4j.driver.v1.Value
 
isTrue() - Method in interface org.neo4j.driver.v1.Value
 

K

keys() - Method in interface org.neo4j.driver.v1.Record
Retrieve the keys of the underlying map
keys() - Method in interface org.neo4j.driver.v1.StatementResult
Retrieve the keys of the records this result contains.
keys() - Method in interface org.neo4j.driver.v1.Value
If the underlying value supports key-based indexing, return an iterable of the keys in the map, this applies to map, node and TypeSystem.RELATIONSHIP() relationship} values.

L

list() - Method in interface org.neo4j.driver.v1.StatementResult
Retrieve and store the entire result stream.
list(Function<Record, T>) - Method in interface org.neo4j.driver.v1.StatementResult
Retrieve and store a projection of the entire result.
logging() - Method in class org.neo4j.driver.v1.Config
Logging provider

N

neo4jErrorCode() - Method in exception org.neo4j.driver.v1.exceptions.Neo4jException
Access the standard Neo4j Status Code for this exception, you can use this to refer to the Neo4j manual for details on what caused the error.
Neo4jException - Exception in org.neo4j.driver.v1.exceptions
This is the base class for all exceptions caused as part of communication with the remote Neo4j server.
Neo4jException(String) - Constructor for exception org.neo4j.driver.v1.exceptions.Neo4jException
 
Neo4jException(String, Throwable) - Constructor for exception org.neo4j.driver.v1.exceptions.Neo4jException
 
Neo4jException(String, String) - Constructor for exception org.neo4j.driver.v1.exceptions.Neo4jException
 
Neo4jException(String, String, Throwable) - Constructor for exception org.neo4j.driver.v1.exceptions.Neo4jException
 
next() - Method in interface org.neo4j.driver.v1.StatementResult
Navigate to and retrieve the next Record in this result.
none() - Static method in class org.neo4j.driver.v1.AuthTokens
No authentication scheme.
NoSuchRecordException - Exception in org.neo4j.driver.v1.exceptions
Thrown whenever a client expected to read a record that was not available (i.e.
NoSuchRecordException(String) - Constructor for exception org.neo4j.driver.v1.exceptions.NoSuchRecordException
 
NULL - Static variable in class org.neo4j.driver.v1.Values
 

O

ofBoolean() - Static method in class org.neo4j.driver.v1.Values
Converts values to Boolean.
ofDouble() - Static method in class org.neo4j.driver.v1.Values
Converts values to Double.
ofEntity() - Static method in class org.neo4j.driver.v1.Values
Converts values to Entity.
ofEntityId() - Static method in class org.neo4j.driver.v1.Values
Converts values to entity id.
ofFloat() - Static method in class org.neo4j.driver.v1.Values
Converts values to Float.
ofInteger() - Static method in class org.neo4j.driver.v1.Values
Converts values to Integer.
ofList() - Static method in class org.neo4j.driver.v1.Values
Converts values to List of Object.
ofList(Function<Value, T>) - Static method in class org.neo4j.driver.v1.Values
Converts values to List of T.
ofLong() - Static method in class org.neo4j.driver.v1.Values
Converts values to Long.
ofMap() - Static method in class org.neo4j.driver.v1.Values
Converts values to Map.
ofMap(Function<Value, T>) - Static method in class org.neo4j.driver.v1.Values
Converts values to Map, with the map values further converted using the provided converter.
ofNode() - Static method in class org.neo4j.driver.v1.Values
Converts values to Node.
ofNumber() - Static method in class org.neo4j.driver.v1.Values
Converts values to Number.
ofObject() - Static method in class org.neo4j.driver.v1.Values
Converts values to objects using Value.asObject().
ofPath() - Static method in class org.neo4j.driver.v1.Values
Converts values to Path.
ofRelationship() - Static method in class org.neo4j.driver.v1.Values
Converts values to Relationship.
ofString() - Static method in class org.neo4j.driver.v1.Values
Converts values to String.
ofToString() - Static method in class org.neo4j.driver.v1.Values
Converts values using Value.toString(), a human-readable string description of any value.
ofValue() - Static method in class org.neo4j.driver.v1.Values
The identity function for value conversion - returns the value untouched.
org.neo4j.driver.v1 - package org.neo4j.driver.v1
 
org.neo4j.driver.v1.exceptions - package org.neo4j.driver.v1.exceptions
 

P

parameters() - Method in class org.neo4j.driver.v1.Statement
 
parameters(Object...) - Static method in class org.neo4j.driver.v1.Values
Helper function for creating a map of parameters, this can be used when you run statements.
peek() - Method in interface org.neo4j.driver.v1.StatementResult
Investigate the next upcoming record without moving forward in the result.

R

Record - Interface in org.neo4j.driver.v1
A record is the object you work with when reading StatementResult - results are streams of records, where records carry the values your statement returned.
Records - Class in org.neo4j.driver.v1
Static utility methods for retaining records
Records() - Constructor for class org.neo4j.driver.v1.Records
 
run(String, Value) - Method in interface org.neo4j.driver.v1.StatementRunner
Run a statement and return a result stream.
run(String, Map<String, Object>) - Method in interface org.neo4j.driver.v1.StatementRunner
Run a statement and return a result stream.
run(String, Record) - Method in interface org.neo4j.driver.v1.StatementRunner
Run a statement and return a result stream.
run(String) - Method in interface org.neo4j.driver.v1.StatementRunner
Run a statement and return a result stream.
run(Statement) - Method in interface org.neo4j.driver.v1.StatementRunner
Run a statement and return a result stream.

S

session() - Method in interface org.neo4j.driver.v1.Driver
Establish a session
Session - Interface in org.neo4j.driver.v1
A live session with a Neo4j instance.
single() - Method in interface org.neo4j.driver.v1.StatementResult
Return the first record in the result, failing if there is not exactly one record left in the stream Calling this method always exhausts the result, even when NoSuchRecordException is thrown.
size() - Method in interface org.neo4j.driver.v1.Record
Retrieve the number of fields in this record
size() - Method in interface org.neo4j.driver.v1.Value
If the underlying value is a collection type, return the number of values in the collection.
Statement - Class in org.neo4j.driver.v1
An executable statement, i.e.
Statement(String, Value) - Constructor for class org.neo4j.driver.v1.Statement
Create a new statement.
Statement(String, Map<String, Object>) - Constructor for class org.neo4j.driver.v1.Statement
Create a new statement.
Statement(String) - Constructor for class org.neo4j.driver.v1.Statement
Create a new statement.
StatementResult - Interface in org.neo4j.driver.v1
The result of running a statement, conceptually a stream of records.
StatementRunner - Interface in org.neo4j.driver.v1
Common interface for components that can execute Neo4j statements.
strategy() - Method in class org.neo4j.driver.v1.Config.TrustStrategy
Return the strategy type desired.
success() - Method in interface org.neo4j.driver.v1.Transaction
Mark this transaction as successful.

T

text() - Method in class org.neo4j.driver.v1.Statement
 
toConfig() - Method in class org.neo4j.driver.v1.Config.ConfigBuilder
Create a config instance from this builder.
toString() - Method in class org.neo4j.driver.v1.Statement
 
toString() - Method in interface org.neo4j.driver.v1.Value
 
Transaction - Interface in org.neo4j.driver.v1
Represents a transaction in the Neo4j database.
TransientException - Exception in org.neo4j.driver.v1.exceptions
A TransientException signals a temporary fault that may be worked around by retrying.
TransientException(String, String) - Constructor for exception org.neo4j.driver.v1.exceptions.TransientException
 
trustOnFirstUse(File) - Static method in class org.neo4j.driver.v1.Config.TrustStrategy
Automatically trust a Neo4j instance the first time we see it - but fail to connect if its encryption certificate ever changes.
trustSignedBy(File) - Static method in class org.neo4j.driver.v1.Config.TrustStrategy
Only encrypted connections to Neo4j instances with certificates signed by a trusted certificate will be accepted.
trustStrategy() - Method in class org.neo4j.driver.v1.Config
 
type() - Method in interface org.neo4j.driver.v1.Value
 
typeSystem() - Method in interface org.neo4j.driver.v1.StatementRunner
 

V

Value - Interface in org.neo4j.driver.v1
Represents a value from Neo4j.
value(Object) - Static method in class org.neo4j.driver.v1.Values
 
value(Value...) - Static method in class org.neo4j.driver.v1.Values
 
value(String...) - Static method in class org.neo4j.driver.v1.Values
 
value(boolean...) - Static method in class org.neo4j.driver.v1.Values
 
value(long...) - Static method in class org.neo4j.driver.v1.Values
 
value(int...) - Static method in class org.neo4j.driver.v1.Values
 
value(double...) - Static method in class org.neo4j.driver.v1.Values
 
value(float...) - Static method in class org.neo4j.driver.v1.Values
 
value(List<Object>) - Static method in class org.neo4j.driver.v1.Values
 
value(Iterable<Object>) - Static method in class org.neo4j.driver.v1.Values
 
value(Iterator<Object>) - Static method in class org.neo4j.driver.v1.Values
 
value(String) - Static method in class org.neo4j.driver.v1.Values
 
value(long) - Static method in class org.neo4j.driver.v1.Values
 
value(int) - Static method in class org.neo4j.driver.v1.Values
 
value(double) - Static method in class org.neo4j.driver.v1.Values
 
value(boolean) - Static method in class org.neo4j.driver.v1.Values
 
value(Map<String, Object>) - Static method in class org.neo4j.driver.v1.Values
 
valueOf(String) - Static method in enum org.neo4j.driver.v1.Config.EncryptionLevel
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.neo4j.driver.v1.Config.TrustStrategy.Strategy
Returns the enum constant of this type with the specified name.
values() - Static method in enum org.neo4j.driver.v1.Config.EncryptionLevel
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.neo4j.driver.v1.Config.TrustStrategy.Strategy
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Method in interface org.neo4j.driver.v1.Record
Retrieve the values of the underlying map
Values - Class in org.neo4j.driver.v1
Utility for wrapping regular Java types and exposing them as Value objects, and vice versa.
values(Object...) - Static method in class org.neo4j.driver.v1.Values
 

W

withEncryptionLevel(Config.EncryptionLevel) - Method in class org.neo4j.driver.v1.Config.ConfigBuilder
Configure the Config.EncryptionLevel to use, use this to control wether the driver uses TLS encryption or not.
withLogging(Logging) - Method in class org.neo4j.driver.v1.Config.ConfigBuilder
Provide an alternative logging implementation for the driver to use.
withMaxSessions(int) - Method in class org.neo4j.driver.v1.Config.ConfigBuilder
The max number of sessions to keep open at once.
withParameters(Value) - Method in class org.neo4j.driver.v1.Statement
 
withParameters(Map<String, Object>) - Method in class org.neo4j.driver.v1.Statement
 
withSessionLivenessCheckTimeout(long) - Method in class org.neo4j.driver.v1.Config.ConfigBuilder
Pooled sessions that have been unused for longer than this timeout will be tested before they are used again, to ensure they are still live.
withText(String) - Method in class org.neo4j.driver.v1.Statement
 
withTrustStrategy(Config.TrustStrategy) - Method in class org.neo4j.driver.v1.Config.ConfigBuilder
Specify how to determine the authenticity of an encryption certificate provided by the Neo4j instance we are connecting to.
withUpdatedParameters(Value) - Method in class org.neo4j.driver.v1.Statement
Create a new statement with new parameters derived by updating this' statement's parameters using the given updates.
A B C D E F G H I K L N O P R S T V W 

Copyright © 2016. All rights reserved.