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

A

AccessMode - Enum in org.neo4j.driver.v1
 
address() - Method in interface org.neo4j.driver.v1.summary.ServerInfo
Returns a string telling the address of the server the query was executed.
ANY() - Method in interface org.neo4j.driver.v1.types.TypeSystem
 
apply(T, U) - Method in interface org.neo4j.driver.v1.util.BiFunction
Applies this function to the given arguments.
apply(T) - Method in interface org.neo4j.driver.v1.util.Function
Applies this function to the given argument.
arguments() - Method in interface org.neo4j.driver.v1.summary.Plan
Many operators have arguments defining their specific behavior.
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.
asMap() - Method in interface org.neo4j.driver.v1.types.MapAccessor
Return the underlying map as a map of string keys and values converted using Value.asObject().
asMap(Function<Value, T>) - Method in interface org.neo4j.driver.v1.types.MapAccessor
 
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
 
AuthenticationException - Exception in org.neo4j.driver.v1.exceptions
Failed to authenticate the driver to the server due to bad credentials provided.
AuthenticationException(String, String) - Constructor for exception org.neo4j.driver.v1.exceptions.AuthenticationException
 
AuthToken - Interface in org.neo4j.driver.v1
Token for holding authentication details, such as user name and 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.
basic(String, 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 explicit transaction.
beginTransaction(String) - Method in interface org.neo4j.driver.v1.Session
Deprecated.
This method is deprecated in favour of Driver.session(String) that accepts an initial bookmark. Session will ensure that all nested transactions are chained with bookmarks to guarantee causal consistency. This method will be removed in the next major release.
BiFunction<T,U,R> - Interface in org.neo4j.driver.v1.util
Same as function.BiFunction, but defined here to work in versions older than java 8.
BOOLEAN() - Method in interface org.neo4j.driver.v1.types.TypeSystem
 
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
 
children() - Method in interface org.neo4j.driver.v1.summary.Plan
As noted in the class-level javadoc, a plan is a tree, where each child is another plan.
children() - Method in interface org.neo4j.driver.v1.summary.ProfiledPlan
 
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, including any open connections.
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.
close() - Method in interface org.neo4j.driver.v1.util.Resource
 
code() - Method in exception org.neo4j.driver.v1.exceptions.Neo4jException
Access the status code for this exception.
code() - Method in interface org.neo4j.driver.v1.summary.Notification
Returns a notification code for the discovered issue.
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
 
column() - Method in interface org.neo4j.driver.v1.summary.InputPosition
The column number referred to by the position; column numbers start at 1.
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
Deprecated.
connectionTimeoutMillis() - Method in class org.neo4j.driver.v1.Config
 
constraintsAdded() - Method in interface org.neo4j.driver.v1.summary.SummaryCounters
 
constraintsRemoved() - Method in interface org.neo4j.driver.v1.summary.SummaryCounters
 
consume() - Method in interface org.neo4j.driver.v1.StatementResult
Consume the entire result, yielding a summary of it.
contains(Node) - Method in interface org.neo4j.driver.v1.types.Path
 
contains(Relationship) - Method in interface org.neo4j.driver.v1.types.Path
 
containsKey(String) - Method in interface org.neo4j.driver.v1.Record
Check if the list of keys contains the given key
containsKey(String) - Method in interface org.neo4j.driver.v1.types.MapAccessor
Check if the list of keys contains the given key
containsUpdates() - Method in interface org.neo4j.driver.v1.summary.SummaryCounters
Whether there were any updates at all, eg.
counters() - Method in interface org.neo4j.driver.v1.summary.ResultSummary
 
custom(String, String, String, String) - Static method in class org.neo4j.driver.v1.AuthTokens
A custom authentication token used for doing custom authentication on the server side.
custom(String, String, String, String, Map<String, Object>) - Static method in class org.neo4j.driver.v1.AuthTokens
A custom authentication token used for doing custom authentication on the server side.

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
 
dbHits() - Method in interface org.neo4j.driver.v1.summary.ProfiledPlan
 
debug(String, Object...) - Method in interface org.neo4j.driver.v1.Logger
 
defaultConfig() - Static method in class org.neo4j.driver.v1.Config
 
description() - Method in interface org.neo4j.driver.v1.summary.Notification
Returns a longer description of the notification.
Driver - Interface in org.neo4j.driver.v1
Accessor for a specific Neo4j graph 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
 
encrypted() - Method in class org.neo4j.driver.v1.Config
 
encryptionLevel() - Method in class org.neo4j.driver.v1.Config
Deprecated.
end() - Method in interface org.neo4j.driver.v1.types.Path
 
end() - Method in interface org.neo4j.driver.v1.types.Path.Segment
The node that this segment ends at.
endNodeId() - Method in interface org.neo4j.driver.v1.types.Relationship
Id of the node where this relationship ends.
Entity - Interface in org.neo4j.driver.v1.types
A uniquely identifiable property container that can form part of a Neo4j graph.
equals(Object) - Method in class org.neo4j.driver.v1.Statement
 
equals(Object) - Method in interface org.neo4j.driver.v1.Value
 
error(String, Throwable) - Method in interface org.neo4j.driver.v1.Logger
 
execute(Transaction) - Method in interface org.neo4j.driver.v1.TransactionWork
Executes all given operations against the same transaction.
Experimental - Annotation Type in org.neo4j.driver.v1.util
Annotated elements are experimental and may change without deprecation across driver releases.

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
FLOAT() - Method in interface org.neo4j.driver.v1.types.TypeSystem
 
fromCode(String) - Static method in enum org.neo4j.driver.v1.summary.StatementType
 
Function<T,R> - Interface in org.neo4j.driver.v1.util
Same as function.Function, but defined here to work in versions older than java 8.
Functions - Class in org.neo4j.driver.v1.util
Generic function utilities.
Functions() - Constructor for class org.neo4j.driver.v1.util.Functions
 

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(String) - Method in interface org.neo4j.driver.v1.types.MapAccessor
Retrieve the value of the property with the given key
get(String, Value) - Method in interface org.neo4j.driver.v1.types.MapAccessorWithDefaultValue
Retrieve the value with the given key.
get(String, Object) - Method in interface org.neo4j.driver.v1.types.MapAccessorWithDefaultValue
Retrieve the object with the given key.
get(String, Number) - Method in interface org.neo4j.driver.v1.types.MapAccessorWithDefaultValue
Retrieve the number with the given key.
get(String, Entity) - Method in interface org.neo4j.driver.v1.types.MapAccessorWithDefaultValue
Retrieve the entity with the given key.
get(String, Node) - Method in interface org.neo4j.driver.v1.types.MapAccessorWithDefaultValue
Retrieve the node with the given key.
get(String, Path) - Method in interface org.neo4j.driver.v1.types.MapAccessorWithDefaultValue
Retrieve the path with the given key.
get(String, Relationship) - Method in interface org.neo4j.driver.v1.types.MapAccessorWithDefaultValue
Retrieve the value with the given key.
get(String, List<Object>) - Method in interface org.neo4j.driver.v1.types.MapAccessorWithDefaultValue
Retrieve the list of objects with the given key.
get(String, List<T>, Function<Value, T>) - Method in interface org.neo4j.driver.v1.types.MapAccessorWithDefaultValue
Retrieve the list with the given key.
get(String, Map<String, Object>) - Method in interface org.neo4j.driver.v1.types.MapAccessorWithDefaultValue
Retrieve the map with the given key.
get(String, Map<String, T>, Function<Value, T>) - Method in interface org.neo4j.driver.v1.types.MapAccessorWithDefaultValue
Retrieve the map with the given key.
get(String, int) - Method in interface org.neo4j.driver.v1.types.MapAccessorWithDefaultValue
Retrieve the java integer with the given key.
get(String, long) - Method in interface org.neo4j.driver.v1.types.MapAccessorWithDefaultValue
Retrieve the java long number with the given key.
get(String, boolean) - Method in interface org.neo4j.driver.v1.types.MapAccessorWithDefaultValue
Retrieve the java boolean with the given key.
get(String, String) - Method in interface org.neo4j.driver.v1.types.MapAccessorWithDefaultValue
Retrieve the java string with the given key.
get(String, float) - Method in interface org.neo4j.driver.v1.types.MapAccessorWithDefaultValue
Retrieve the java float number with the given key.
get(String, double) - Method in interface org.neo4j.driver.v1.types.MapAccessorWithDefaultValue
Retrieve the java double number with the given key.
get(int) - Method in interface org.neo4j.driver.v1.Value
Retrieve the value at the given index
getLog(String) - Method in interface org.neo4j.driver.v1.Logging
Obtain a Logger instance by name.
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 class org.neo4j.driver.v1.Statement
 
hashCode() - Method in interface org.neo4j.driver.v1.Value
 
hasLabel(String) - Method in interface org.neo4j.driver.v1.types.Node
Test if this node has a given label
hasNext() - Method in interface org.neo4j.driver.v1.StatementResult
Test if there is another record we can navigate to in this result.
hasPlan() - Method in interface org.neo4j.driver.v1.summary.ResultSummary
 
hasProfile() - Method in interface org.neo4j.driver.v1.summary.ResultSummary
 
hasType(String) - Method in interface org.neo4j.driver.v1.types.Relationship
Test if this relationship has the given type
hasType(Type) - Method in interface org.neo4j.driver.v1.Value
Test if this value is a value of the given type

I

id() - Method in interface org.neo4j.driver.v1.types.Entity
A unique id for this Entity.
identifiers() - Method in interface org.neo4j.driver.v1.summary.Plan
Identifiers used by this part of the plan.
identity() - Static method in class org.neo4j.driver.v1.util.Functions
 
idleTimeBeforeConnectionTest() - Method in class org.neo4j.driver.v1.Config
Pooled connections that have been idle in the pool for longer than this timeout will be tested before they are used again, to ensure they are still live.
Immutable - Annotation Type in org.neo4j.driver.v1.util
Indicates that instances of the annotated class or of its subclasses are immutable, i.e.
index(String) - Method in interface org.neo4j.driver.v1.Record
Retrieve the index of the field with the given key
indexesAdded() - Method in interface org.neo4j.driver.v1.summary.SummaryCounters
 
indexesRemoved() - Method in interface org.neo4j.driver.v1.summary.SummaryCounters
 
info(String, Object...) - Method in interface org.neo4j.driver.v1.Logger
 
InputPosition - Interface in org.neo4j.driver.v1.summary
An input position refers to a specific character in a statement.
INTEGER() - Method in interface org.neo4j.driver.v1.types.TypeSystem
 
isDebugEnabled() - Method in interface org.neo4j.driver.v1.Logger
 
isEmpty() - Method in interface org.neo4j.driver.v1.Value
If this value represents a list or map, test if the collection is empty.
isEncrypted() - Method in interface org.neo4j.driver.v1.Driver
Return a flag to indicate whether or not encryption is used for this driver.
isFalse() - Method in interface org.neo4j.driver.v1.Value
 
isNull() - Method in interface org.neo4j.driver.v1.Value
 
isOpen() - Method in interface org.neo4j.driver.v1.util.Resource
Detect whether this resource is still open
isTraceEnabled() - Method in interface org.neo4j.driver.v1.Logger
 
isTrue() - Method in interface org.neo4j.driver.v1.Value
 
isTypeOf(Value) - Method in interface org.neo4j.driver.v1.types.Type
Test if the given value has this type

K

kerberos(String) - Static method in class org.neo4j.driver.v1.AuthTokens
The kerberos authentication scheme, using a base64 encoded ticket
key() - Method in interface org.neo4j.driver.v1.util.Pair
 
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.types.MapAccessor
Retrieve the keys of the underlying map
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

labels() - Method in interface org.neo4j.driver.v1.types.Node
Return all labels.
labelsAdded() - Method in interface org.neo4j.driver.v1.summary.SummaryCounters
 
labelsRemoved() - Method in interface org.neo4j.driver.v1.summary.SummaryCounters
 
lastBookmark() - Method in interface org.neo4j.driver.v1.Session
Return the bookmark received following the last completed transaction.
length() - Method in interface org.neo4j.driver.v1.types.Path
 
line() - Method in interface org.neo4j.driver.v1.summary.InputPosition
The line number referred to by the position; line numbers start at 1.
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.
LIST() - Method in interface org.neo4j.driver.v1.types.TypeSystem
 
Logger - Interface in org.neo4j.driver.v1
Logs messages for driver activity.
logging() - Method in class org.neo4j.driver.v1.Config
Logging provider
Logging - Interface in org.neo4j.driver.v1
Accessor for Logger instances.
logLeakedSessions() - Method in class org.neo4j.driver.v1.Config
Check if leaked sessions logging is enabled.
LossyCoercion - Exception in org.neo4j.driver.v1.exceptions.value
A LossyCoercion exception indicates that the conversion cannot be achieved without losing precision.
LossyCoercion(String, String) - Constructor for exception org.neo4j.driver.v1.exceptions.value.LossyCoercion
 

M

MAP() - Method in interface org.neo4j.driver.v1.types.TypeSystem
 
MapAccessor - Interface in org.neo4j.driver.v1.types
Access the keys, properties and values of an underlying unordered map by key This provides only read methods.
MapAccessorWithDefaultValue - Interface in org.neo4j.driver.v1.types
Provides methods to access the value of an underlying unordered map by key.
maxIdleConnectionPoolSize() - Method in class org.neo4j.driver.v1.Config
Max number of idle connections per URL for this driver.

N

name() - Method in interface org.neo4j.driver.v1.types.Type
 
neo4jErrorCode() - Method in exception org.neo4j.driver.v1.exceptions.Neo4jException
Deprecated.
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.
Node - Interface in org.neo4j.driver.v1.types
The Node interface describes the characteristics of a node from a Neo4j graph.
NODE() - Method in interface org.neo4j.driver.v1.types.TypeSystem
 
nodes() - Method in interface org.neo4j.driver.v1.types.Path
Create an iterable over the nodes in this path, nodes will appear in the same order as they appear in the path.
nodesCreated() - Method in interface org.neo4j.driver.v1.summary.SummaryCounters
 
nodesDeleted() - Method in interface org.neo4j.driver.v1.summary.SummaryCounters
 
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
 
Notification - Interface in org.neo4j.driver.v1.summary
Representation for notifications found when executing a statement.
notifications() - Method in interface org.neo4j.driver.v1.summary.ResultSummary
A list of notifications that might arise when executing the statement.
NotMultiValued - Exception in org.neo4j.driver.v1.exceptions.value
A NotMultiValued exception indicates that the value does not consist of multiple values, a.k.a.
NotMultiValued(String) - Constructor for exception org.neo4j.driver.v1.exceptions.value.NotMultiValued
 
NULL() - Method in interface org.neo4j.driver.v1.types.TypeSystem
 
NULL - Static variable in class org.neo4j.driver.v1.Values
 
NUMBER() - Method in interface org.neo4j.driver.v1.types.TypeSystem
 

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.
offset() - Method in interface org.neo4j.driver.v1.summary.InputPosition
The character offset referred to by this position; offset numbers start at 0.
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.
operatorType() - Method in interface org.neo4j.driver.v1.summary.Plan
 
org.neo4j.driver.v1 - package org.neo4j.driver.v1
 
org.neo4j.driver.v1.exceptions - package org.neo4j.driver.v1.exceptions
 
org.neo4j.driver.v1.exceptions.value - package org.neo4j.driver.v1.exceptions.value
 
org.neo4j.driver.v1.summary - package org.neo4j.driver.v1.summary
 
org.neo4j.driver.v1.types - package org.neo4j.driver.v1.types
 
org.neo4j.driver.v1.util - package org.neo4j.driver.v1.util
 

P

Pair<K,V> - Interface in org.neo4j.driver.v1.util
Immutable pair of a key and a value
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.
Path - Interface in org.neo4j.driver.v1.types
A Path is a directed sequence of relationships between two nodes.
PATH() - Method in interface org.neo4j.driver.v1.types.TypeSystem
 
Path.Segment - Interface in org.neo4j.driver.v1.types
A segment combines a relationship in a path with a start and end node that describe the traversal direction for that relationship.
peek() - Method in interface org.neo4j.driver.v1.StatementResult
Investigate the next upcoming record without moving forward in the result.
Plan - Interface in org.neo4j.driver.v1.summary
This describes the plan that the database planner produced and used (or will use) to execute your statement.
plan() - Method in interface org.neo4j.driver.v1.summary.ResultSummary
This describes how the database will execute your statement.
position() - Method in interface org.neo4j.driver.v1.summary.Notification
The position in the statement where this notification points to.
profile() - Method in interface org.neo4j.driver.v1.summary.ResultSummary
This describes how the database did execute your statement.
ProfiledPlan - Interface in org.neo4j.driver.v1.summary
This is the same as a regular Plan - except this plan has been executed, meaning it also contains detailed information about how much work each step of the plan incurred on the database.
propertiesSet() - Method in interface org.neo4j.driver.v1.summary.SummaryCounters
 
ProtocolException - Exception in org.neo4j.driver.v1.exceptions
A signal that the contract for client-server communication has broken down.
ProtocolException(String) - Constructor for exception org.neo4j.driver.v1.exceptions.ProtocolException
 
ProtocolException(String, Throwable) - Constructor for exception org.neo4j.driver.v1.exceptions.ProtocolException
 

R

readTransaction(TransactionWork<T>) - Method in interface org.neo4j.driver.v1.Session
Execute given unit of work in a read transaction.
Record - Interface in org.neo4j.driver.v1
Container for Cypher result values.
Records - Class in org.neo4j.driver.v1
Static utility methods for retaining records
Records() - Constructor for class org.neo4j.driver.v1.Records
 
records() - Method in interface org.neo4j.driver.v1.summary.ProfiledPlan
 
relationship() - Method in interface org.neo4j.driver.v1.types.Path.Segment
 
Relationship - Interface in org.neo4j.driver.v1.types
The Relationship interface describes the characteristics of a relationship from a Neo4j graph.
RELATIONSHIP() - Method in interface org.neo4j.driver.v1.types.TypeSystem
 
relationships() - Method in interface org.neo4j.driver.v1.types.Path
Create an iterable over the relationships in this path.
relationshipsCreated() - Method in interface org.neo4j.driver.v1.summary.SummaryCounters
 
relationshipsDeleted() - Method in interface org.neo4j.driver.v1.summary.SummaryCounters
 
reset() - Method in interface org.neo4j.driver.v1.Session
Deprecated.
This method should not be used and violates the expected usage pattern of Session objects. They are expected to be not thread-safe and should not be shared between thread. However this method is only useful when Session object is passed to another monitoring thread that calls it when appropriate. It is not useful when Session is used in a single thread because in this case Session.close() can be used. Since version 3.1, Neo4j database allows users to specify maximum transaction execution time and contains procedures to list and terminate running queries. These functions should be used instead of calling this method.
Resource - Interface in org.neo4j.driver.v1.util
A Resource is an AutoCloseable that allows introspecting if it already has been closed through its Resource.isOpen() method.
resultAvailableAfter(TimeUnit) - Method in interface org.neo4j.driver.v1.summary.ResultSummary
The time it took the server to make the result available for consumption.
resultConsumedAfter(TimeUnit) - Method in interface org.neo4j.driver.v1.summary.ResultSummary
The time it took the server to consume the result.
ResultSummary - Interface in org.neo4j.driver.v1.summary
The result summary of running a statement.
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

SecurityException - Exception in org.neo4j.driver.v1.exceptions
Failed to communicate with the server due to security errors.
SecurityException(String, String) - Constructor for exception org.neo4j.driver.v1.exceptions.SecurityException
 
SecurityException(String, Throwable) - Constructor for exception org.neo4j.driver.v1.exceptions.SecurityException
 
server() - Method in interface org.neo4j.driver.v1.summary.ResultSummary
The basic information of the server where the result is obtained from
ServerInfo - Interface in org.neo4j.driver.v1.summary
Provides some basic information of the server where the result is obtained from.
ServiceUnavailableException - Exception in org.neo4j.driver.v1.exceptions
An ServiceUnavailableException indicates that the driver cannot communicate with the cluster.
ServiceUnavailableException(String) - Constructor for exception org.neo4j.driver.v1.exceptions.ServiceUnavailableException
 
ServiceUnavailableException(String, Throwable) - Constructor for exception org.neo4j.driver.v1.exceptions.ServiceUnavailableException
 
session() - Method in interface org.neo4j.driver.v1.Driver
Create a new general purpose Session.
session(AccessMode) - Method in interface org.neo4j.driver.v1.Driver
Create a new Session for a specific type of work.
session(String) - Method in interface org.neo4j.driver.v1.Driver
Create a new write Session with the specified initial bookmark.
session(AccessMode, String) - Method in interface org.neo4j.driver.v1.Driver
Create a new Session for a specific type of work with the specified initial bookmark.
Session - Interface in org.neo4j.driver.v1
Provides a context of work for database interactions.
SessionExpiredException - Exception in org.neo4j.driver.v1.exceptions
A SessionExpiredException indicates that the session can no longer satisfy the criteria under which it was acquired, e.g.
SessionExpiredException(String) - Constructor for exception org.neo4j.driver.v1.exceptions.SessionExpiredException
 
SessionExpiredException(String, Throwable) - Constructor for exception org.neo4j.driver.v1.exceptions.SessionExpiredException
 
severity() - Method in interface org.neo4j.driver.v1.summary.Notification
The severity level of the notification.
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.types.MapAccessor
Retrieve the number of entries in this map
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.
start() - Method in interface org.neo4j.driver.v1.types.Path.Segment
The node that this segment starts at.
start() - Method in interface org.neo4j.driver.v1.types.Path
 
startNodeId() - Method in interface org.neo4j.driver.v1.types.Relationship
Id of the node where this relationship starts.
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.
statement() - Method in interface org.neo4j.driver.v1.summary.ResultSummary
 
StatementResult - Interface in org.neo4j.driver.v1
The result of running a Cypher statement, conceptually a stream of records.
StatementRunner - Interface in org.neo4j.driver.v1
Common interface for components that can execute Neo4j statements.
statementType() - Method in interface org.neo4j.driver.v1.summary.ResultSummary
 
StatementType - Enum in org.neo4j.driver.v1.summary
The type of statement executed.
strategy() - Method in class org.neo4j.driver.v1.Config.TrustStrategy
Return the strategy type desired.
STRING() - Method in interface org.neo4j.driver.v1.types.TypeSystem
 
success() - Method in interface org.neo4j.driver.v1.Transaction
Mark this transaction as successful.
summary() - Method in interface org.neo4j.driver.v1.StatementResult
Return the result summary.
SummaryCounters - Interface in org.neo4j.driver.v1.summary
Contains counters for various operations that a statement triggered.

T

text() - Method in class org.neo4j.driver.v1.Statement
 
title() - Method in interface org.neo4j.driver.v1.summary.Notification
Returns a short summary of the notification.
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
 
trace(String, Object...) - Method in interface org.neo4j.driver.v1.Logger
 
Transaction - Interface in org.neo4j.driver.v1
Logical container for an atomic unit of work.
TransactionWork<T> - Interface in org.neo4j.driver.v1
Callback that executes operations against a given Transaction.
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
 
trustAllCertificates() - Static method in class org.neo4j.driver.v1.Config.TrustStrategy
Trust strategy for certificates that can be verified through the local system store.
trustCustomCertificateSignedBy(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.
trustOnFirstUse(File) - Static method in class org.neo4j.driver.v1.Config.TrustStrategy
Deprecated.
trustSignedBy(File) - Static method in class org.neo4j.driver.v1.Config.TrustStrategy
Deprecated.
trustStrategy() - Method in class org.neo4j.driver.v1.Config
 
trustSystemCertificates() - Static method in class org.neo4j.driver.v1.Config.TrustStrategy
Trust strategy for certificates that can be verified through the local system store.
type() - Method in interface org.neo4j.driver.v1.types.Relationship
Return the type of this relationship.
Type - Interface in org.neo4j.driver.v1.types
The type of a Value as defined by the Cypher language
type() - Method in interface org.neo4j.driver.v1.Value
 
typeSystem() - Method in interface org.neo4j.driver.v1.StatementRunner
 
TypeSystem - Interface in org.neo4j.driver.v1.types
A listing of all database types this driver can handle.

U

Uncoercible - Exception in org.neo4j.driver.v1.exceptions.value
A Uncoercible exception indicates that the conversion cannot be achieved.
Uncoercible(String, String) - Constructor for exception org.neo4j.driver.v1.exceptions.value.Uncoercible
 
Unsizable - Exception in org.neo4j.driver.v1.exceptions.value
A Unsizable exception indicates that the value does not have a size.
Unsizable(String) - Constructor for exception org.neo4j.driver.v1.exceptions.value.Unsizable
 

V

value() - Method in interface org.neo4j.driver.v1.util.Pair
 
Value - Interface in org.neo4j.driver.v1
A unit of data that adheres to the Neo4j type system.
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
 
ValueException - Exception in org.neo4j.driver.v1.exceptions.value
A ValueException indicates that the client has carried out an operation on values incorrectly.
ValueException(String) - Constructor for exception org.neo4j.driver.v1.exceptions.value.ValueException
 
valueOf(String) - Static method in enum org.neo4j.driver.v1.AccessMode
Returns the enum constant of this type with the specified name.
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.
valueOf(String) - Static method in enum org.neo4j.driver.v1.summary.StatementType
Returns the enum constant of this type with the specified name.
values() - Static method in enum org.neo4j.driver.v1.AccessMode
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.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() - Static method in enum org.neo4j.driver.v1.summary.StatementType
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Method in interface org.neo4j.driver.v1.types.MapAccessor
Retrieve all values of the underlying collection
values(Function<Value, T>) - Method in interface org.neo4j.driver.v1.types.MapAccessor
Map and retrieve all values of the underlying collection
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
 
version() - Method in interface org.neo4j.driver.v1.summary.ServerInfo
Returns a string telling which version of the server the query was executed.

W

warn(String, Object...) - Method in interface org.neo4j.driver.v1.Logger
 
warn(String, Throwable) - Method in interface org.neo4j.driver.v1.Logger
 
withConnectionLivenessCheckTimeout(long, TimeUnit) - Method in class org.neo4j.driver.v1.Config.ConfigBuilder
Pooled connections that have been idle in the pool for longer than this timeout will be tested before they are used again, to ensure they are still live.
withConnectionTimeout(long, TimeUnit) - Method in class org.neo4j.driver.v1.Config.ConfigBuilder
Specify socket connection timeout.
withEncryption() - Method in class org.neo4j.driver.v1.Config.ConfigBuilder
Set to use encrypted traffic.
withEncryptionLevel(Config.EncryptionLevel) - Method in class org.neo4j.driver.v1.Config.ConfigBuilder
Deprecated.
withLeakedSessionsLogging() - Method in class org.neo4j.driver.v1.Config.ConfigBuilder
Enable logging of leaked sessions.
withLogging(Logging) - Method in class org.neo4j.driver.v1.Config.ConfigBuilder
Provide an alternative logging implementation for the driver to use.
withMaxIdleSessions(int) - Method in class org.neo4j.driver.v1.Config.ConfigBuilder
The max number of idle sessions to keep open at once.
withMaxSessions(int) - Method in class org.neo4j.driver.v1.Config.ConfigBuilder
Deprecated.
withMaxTransactionRetryTime(long, TimeUnit) - Method in class org.neo4j.driver.v1.Config.ConfigBuilder
Specify the maximum time transactions are allowed to retry via Session.readTransaction(TransactionWork) and Session.writeTransaction(TransactionWork) methods.
withoutEncryption() - Method in class org.neo4j.driver.v1.Config.ConfigBuilder
Set to use unencrypted traffic.
withParameters(Value) - Method in class org.neo4j.driver.v1.Statement
 
withParameters(Map<String, Object>) - Method in class org.neo4j.driver.v1.Statement
 
withRoutingFailureLimit(int) - Method in class org.neo4j.driver.v1.Config.ConfigBuilder
Deprecated.
in 1.2 because driver memorizes seed URI used during construction and falls back to it at runtime when all other known router servers failed to respond. Driver is also able to perform DNS lookup for the seed URI during rediscovery. This means updates of cluster members will be picked up if they are reflected in a DNS record. This configuration allowed driver to retry rediscovery procedure and postpone failure. Currently there exists a better way of doing retries via Session.readTransaction(TransactionWork) and Session.writeTransaction(TransactionWork). Method will be removed in the next major release.
withRoutingRetryDelay(long, TimeUnit) - Method in class org.neo4j.driver.v1.Config.ConfigBuilder
Deprecated.
in 1.2 because driver memorizes seed URI used during construction and falls back to it at runtime when all other known router servers failed to respond. Driver is also able to perform DNS lookup for the seed URI during rediscovery. This means updates of cluster members will be picked up if they are reflected in a DNS record. This configuration allowed driver to retry rediscovery procedure and postpone failure. Currently there exists a better way of doing retries via Session.readTransaction(TransactionWork) and Session.writeTransaction(TransactionWork). Method will be removed in the next major release.
withSessionLivenessCheckTimeout(long) - Method in class org.neo4j.driver.v1.Config.ConfigBuilder
Deprecated.
please use Config.ConfigBuilder.withConnectionLivenessCheckTimeout(long, TimeUnit) method. This method will be removed in future release.
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.
writeTransaction(TransactionWork<T>) - Method in interface org.neo4j.driver.v1.Session
Execute given unit of work in a write transaction.
A B C D E F G H I K L M N O P R S T U V W 

Copyright © 2017. All rights reserved.