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

A

ANY() - Method in interface org.neo4j.driver.v1.TypeSystem
 
apply(T) - Method in interface org.neo4j.driver.v1.Function
Applies this function to the given argument.
arguments() - Method in interface org.neo4j.driver.v1.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.
asIdentity() - Method in interface org.neo4j.driver.v1.Value
 
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
 
asList(Function<Value, T>) - Method in interface org.neo4j.driver.v1.Value
 
asLong() - Method in interface org.neo4j.driver.v1.Identity
 
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 value map, e.g.
asMap() - Method in interface org.neo4j.driver.v1.Value
 
asMap(Function<Value, T>) - Method in interface org.neo4j.driver.v1.Value
 
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
 
atEnd() - Method in interface org.neo4j.driver.v1.ResultCursor
Test if the cursor is positioned at the last stream record or if the stream is empty.

B

beginTransaction() - Method in interface org.neo4j.driver.v1.Session
Begin a new transaction in this session.
BOOLEAN() - Method in interface org.neo4j.driver.v1.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.TlsAuthenticationConfig
 
children() - Method in interface org.neo4j.driver.v1.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.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 class org.neo4j.driver.v1.Driver
Close all the resources assigned to this driver
close() - Method in interface org.neo4j.driver.v1.Resource
 
code() - Method in interface org.neo4j.driver.v1.Notification
Returns a notification code for the discovered issue.
column() - Method in interface org.neo4j.driver.v1.InputPosition
The column number referred to by the position; column numbers start at 1.
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
 
columnAsIs(int) - Static method in class org.neo4j.driver.v1.Records
 
columnAsIs(String) - 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.TlsAuthenticationConfig - Class in org.neo4j.driver.v1
A configuration to configure TLS authentication
connectionPoolSize() - Method in class org.neo4j.driver.v1.Config
Max number of connections per URL for this driver.
constraintsAdded() - Method in interface org.neo4j.driver.v1.UpdateStatistics
 
constraintsRemoved() - Method in interface org.neo4j.driver.v1.UpdateStatistics
 
contains(Node) - Method in interface org.neo4j.driver.v1.Path
 
contains(Relationship) - Method in interface org.neo4j.driver.v1.Path
 
containsKey(String) - Method in interface org.neo4j.driver.v1.MapAccessor
Check if the list of keys contains the given key
containsKey(String) - Method in interface org.neo4j.driver.v1.RecordAccessor
Check if the list of keys contains the given key
containsUpdates() - Method in interface org.neo4j.driver.v1.UpdateStatistics
Whether there were any updates at all, eg.

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.ProfiledPlan
 
DEFAULT_PORT - Static variable in class org.neo4j.driver.v1.Config
 
defaultConfig() - Static method in class org.neo4j.driver.v1.Config
 
defunct() - Method in interface org.neo4j.driver.v1.Transaction
 
description() - Method in interface org.neo4j.driver.v1.Notification
Returns a longer description of the notification.
Directed<T> - Interface in org.neo4j.driver.v1
An item that can be considered to have direction.
Driver - Class in org.neo4j.driver.v1
A Neo4j database driver, through which you can create sessions to run statements against the database.
Driver(URI, Config) - Constructor for class org.neo4j.driver.v1.Driver
 
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.

E

EmptyMap - Static variable in class org.neo4j.driver.v1.Values
 
end() - Method in interface org.neo4j.driver.v1.Directed
 
end() - Method in interface org.neo4j.driver.v1.Path
 
Entity - Interface in org.neo4j.driver.v1
A uniquely identifiable property container that can form part of a Neo4j graph.
equals(Object) - Method in interface org.neo4j.driver.v1.Identity
 
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
 
Experimental - Annotation Type in org.neo4j.driver.v1
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.RecordAccessor
Retrieve all record fields
first() - Method in interface org.neo4j.driver.v1.ResultCursor
Return the first record in the stream.
first(String) - Method in interface org.neo4j.driver.v1.ResultCursor
Return a field value from the first record in the stream.
first(int) - Method in interface org.neo4j.driver.v1.ResultCursor
Return a field value from the first record in the stream.
FLOAT() - Method in interface org.neo4j.driver.v1.TypeSystem
 
fromCode(String) - Static method in enum org.neo4j.driver.v1.StatementType
 
Function<T,R> - Interface in org.neo4j.driver.v1
Same as function.Function, but defined here to work in versions older than java 8.

G

get(int) - Method in interface org.neo4j.driver.v1.ListAccessor
Retrieve the value at the given index
get(String) - Method in interface org.neo4j.driver.v1.MapAccessor
Retrieve the value of the property with the given key
get(String) - Method in interface org.neo4j.driver.v1.RecordAccessor
Retrieve the value of the property with the given key
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.Identity
 
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
 
hasLabel(String) - Method in interface org.neo4j.driver.v1.Node
Test if this node has a given label
hasPlan() - Method in interface org.neo4j.driver.v1.ResultSummary
 
hasProfile() - Method in interface org.neo4j.driver.v1.ResultSummary
 
hasType(String) - Method in interface org.neo4j.driver.v1.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

identifiers() - Method in interface org.neo4j.driver.v1.Plan
Identifiers used by this part of the plan.
identity() - Method in interface org.neo4j.driver.v1.Entity
A unique identity for this Entity.
Identity - Interface in org.neo4j.driver.v1
A unique identifier for an Entity.
IDENTITY() - Method in interface org.neo4j.driver.v1.TypeSystem
 
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.
Immutable - Annotation Type in org.neo4j.driver.v1
Indicates that instances of the annotated class or of its subclasses are immutable, i.e.
index(String) - Method in interface org.neo4j.driver.v1.RecordAccessor
Retrieve the index of the field with the given key
indexesAdded() - Method in interface org.neo4j.driver.v1.UpdateStatistics
 
indexesRemoved() - Method in interface org.neo4j.driver.v1.UpdateStatistics
 
InputPosition - Interface in org.neo4j.driver.v1
An input position refers to a specific character in a statement.
INTEGER() - Method in interface org.neo4j.driver.v1.TypeSystem
 
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
 
isFullAuthEnabled() - Method in class org.neo4j.driver.v1.Config.TlsAuthenticationConfig
Return true if full authentication is enabled, which suggests a trusted certificate is provided with Config.TlsAuthenticationConfig.usingTrustedCert(File).
isNull() - Method in interface org.neo4j.driver.v1.Value
 
isOpen() - Method in interface org.neo4j.driver.v1.Resource
Detect whether this resource is still open
isTlsEnabled() - Method in class org.neo4j.driver.v1.Config
If TLS is enabled in all socket connections
isTrue() - Method in interface org.neo4j.driver.v1.Value
 
isTypeOf(Value) - Method in interface org.neo4j.driver.v1.Type
Test if the given value has this type

K

key() - Method in interface org.neo4j.driver.v1.Pair
 
keys() - Method in interface org.neo4j.driver.v1.MapAccessor
Retrieve the keys of the underlying map
keys() - Method in interface org.neo4j.driver.v1.RecordAccessor
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.Node
Return all labels.
labelsAdded() - Method in interface org.neo4j.driver.v1.UpdateStatistics
 
labelsRemoved() - Method in interface org.neo4j.driver.v1.UpdateStatistics
 
length() - Method in interface org.neo4j.driver.v1.Path
 
limit(long) - Method in interface org.neo4j.driver.v1.ResultCursor
Limit this cursor to return no more than the given number of records after the current record.
line() - Method in interface org.neo4j.driver.v1.InputPosition
The line number referred to by the position; line numbers start at 1.
list() - Method in interface org.neo4j.driver.v1.ResultCursor
Retrieve and store the entire result stream.
list(Function<RecordAccessor, T>) - Method in interface org.neo4j.driver.v1.ResultCursor
Retrieve and store a projection of the entire result stream.
LIST() - Method in interface org.neo4j.driver.v1.TypeSystem
 
ListAccessor - Interface in org.neo4j.driver.v1
Access an underlying list of values by index This provides only read methods.
logging() - Method in class org.neo4j.driver.v1.Config
Logging provider

M

MAP() - Method in interface org.neo4j.driver.v1.TypeSystem
 
MapAccessor - Interface in org.neo4j.driver.v1
Access the keys, properties and values of an underlying unordered map by key This provides only read methods.

N

name() - Method in interface org.neo4j.driver.v1.Type
 
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 Neo4j exceptions.
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.ResultCursor
Move to the next record in the result.
Node - Interface in org.neo4j.driver.v1
The Node interface describes the characteristics of a node from a Neo4j graph.
NODE() - Method in interface org.neo4j.driver.v1.TypeSystem
 
nodes() - Method in interface org.neo4j.driver.v1.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.UpdateStatistics
 
nodesDeleted() - Method in interface org.neo4j.driver.v1.UpdateStatistics
 
NoSuchRecordException - Exception in org.neo4j.driver.v1.exceptions
 
NoSuchRecordException(String) - Constructor for exception org.neo4j.driver.v1.exceptions.NoSuchRecordException
 
Notification - Interface in org.neo4j.driver.v1
Representation for notifications found when executing a statement.
notifications() - Method in interface org.neo4j.driver.v1.ResultSummary
A list of notifications that might arise when executing the statement.
NULL() - Method in interface org.neo4j.driver.v1.TypeSystem
 
NULL - Static variable in class org.neo4j.driver.v1.Values
 
NUMBER() - Method in interface org.neo4j.driver.v1.TypeSystem
 

O

offset() - Method in interface org.neo4j.driver.v1.InputPosition
The character offset referred to by this position; offset numbers start at 0.
operatorType() - Method in interface org.neo4j.driver.v1.Plan
 
org.neo4j.driver.v1 - package org.neo4j.driver.v1
 
org.neo4j.driver.v1.exceptions - package org.neo4j.driver.v1.exceptions
 

P

Pair<K,V> - Interface in org.neo4j.driver.v1
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
A Path is a directed sequence of relationships between two nodes.
PATH() - Method in interface org.neo4j.driver.v1.TypeSystem
 
Path.Segment - Interface in org.neo4j.driver.v1
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.ResultCursor
Investigate the next upcoming record without changing the position of this cursor.
Plan - Interface in org.neo4j.driver.v1
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.ResultSummary
This describes how the database will execute your statement.
position() - Method in interface org.neo4j.driver.v1.Notification
The position in the statement where this notification points to.
position() - Method in interface org.neo4j.driver.v1.ResultCursor
Retrieve the zero based position of the cursor in the stream of records.
profile() - Method in interface org.neo4j.driver.v1.ResultSummary
This describes how the database did execute your statement.
ProfiledPlan - Interface in org.neo4j.driver.v1
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.
properties() - Method in interface org.neo4j.driver.v1.MapAccessor
Retrieve all properties of the underlying map
properties(Function<Value, V>) - Method in interface org.neo4j.driver.v1.MapAccessor
Retrieve all properties of the underlying map
propertiesSet() - Method in interface org.neo4j.driver.v1.UpdateStatistics
 

R

Record - Interface in org.neo4j.driver.v1
A record is an immutable copy of an ordered map
record() - Method in interface org.neo4j.driver.v1.RecordAccessor
 
record() - Method in interface org.neo4j.driver.v1.ResultCursor
 
RecordAccessor - Interface in org.neo4j.driver.v1
Access an underlying record (which is an ordered map of fields) This provides only read methods.
recordAsIs() - Static method in class org.neo4j.driver.v1.Records
 
records() - Method in interface org.neo4j.driver.v1.ProfiledPlan
 
Records - Class in org.neo4j.driver.v1
Static utility methods for retaining records
Records() - Constructor for class org.neo4j.driver.v1.Records
 
relationship() - Method in interface org.neo4j.driver.v1.Path.Segment
 
Relationship - Interface in org.neo4j.driver.v1
The Relationship interface describes the characteristics of a relationship from a Neo4j graph.
RELATIONSHIP() - Method in interface org.neo4j.driver.v1.TypeSystem
 
relationships() - Method in interface org.neo4j.driver.v1.Path
Create an iterable over the relationships in this path.
relationshipsCreated() - Method in interface org.neo4j.driver.v1.UpdateStatistics
 
relationshipsDeleted() - Method in interface org.neo4j.driver.v1.UpdateStatistics
 
Resource - Interface in org.neo4j.driver.v1
A Resource is an AutoCloseable that allows introspecting if it already has been closed through its Resource.isOpen() method.
ResultCursor - Interface in org.neo4j.driver.v1
The result of running a statement, a stream of records represented as a cursor.
ResultSummary - Interface in org.neo4j.driver.v1
The result summary of running a statement.
run(String, Map<String, Value>) - 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

SCHEME - Static variable in class org.neo4j.driver.v1.Config
 
session() - Method in class 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.ResultCursor
Move to the first record and return an immutable copy of it, failing if there is not exactly one record in the stream, or if this cursor has already been used to move past the first record.
single(String) - Method in interface org.neo4j.driver.v1.ResultCursor
Move to the first record and return a field value from it, failing if there is not exactly one record in the stream, or if this cursor has already been used to move past the first record.
single(int) - Method in interface org.neo4j.driver.v1.ResultCursor
Move to the first record and return a field value from it, failing if there is not exactly one record in the stream, or if this cursor has already been used to move past the first record.
size() - Method in interface org.neo4j.driver.v1.ListAccessor
Retrieve the number of elements in this list
size() - Method in interface org.neo4j.driver.v1.MapAccessor
Retrieve the number of entries in this map
size() - Method in interface org.neo4j.driver.v1.RecordAccessor
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.
skip(long) - Method in interface org.neo4j.driver.v1.ResultCursor
Advance the cursor as if calling next multiple times.
start() - Method in interface org.neo4j.driver.v1.Directed
 
start() - Method in interface org.neo4j.driver.v1.Path
 
statement() - Method in interface org.neo4j.driver.v1.ResultSummary
 
Statement - Class in org.neo4j.driver.v1
An executable statement, i.e.
Statement(String, Map<String, Value>) - Constructor for class org.neo4j.driver.v1.Statement
 
Statement(String) - Constructor for class org.neo4j.driver.v1.Statement
 
StatementRunner - Interface in org.neo4j.driver.v1
Common interface for components that can execute Neo4j statements.
statementType() - Method in interface org.neo4j.driver.v1.ResultSummary
 
StatementType - Enum in org.neo4j.driver.v1
 
STRING() - Method in interface org.neo4j.driver.v1.TypeSystem
 
success() - Method in interface org.neo4j.driver.v1.Transaction
Mark this transaction as successful.
summarize() - Method in interface org.neo4j.driver.v1.ResultCursor
Summarize the result.

T

template() - Method in class org.neo4j.driver.v1.Statement
 
title() - Method in interface org.neo4j.driver.v1.Notification
Returns a short summary of the notification.
tlsAuthConfig() - Method in class org.neo4j.driver.v1.Config
Specify an approach to authenticate the server when establishing TLS connections with the server
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
 
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
 
type() - Method in interface org.neo4j.driver.v1.Relationship
Return the type of this relationship.
Type - Interface in org.neo4j.driver.v1
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
 

U

updateStatistics() - Method in interface org.neo4j.driver.v1.ResultSummary
 
UpdateStatistics - Interface in org.neo4j.driver.v1
Contains counters for the number of update operations performed by a statement.
usingKnownCerts(File) - Static method in class org.neo4j.driver.v1.Config.TlsAuthenticationConfig
Using trust-on-first-use authentication.
usingTrustedCert(File) - Static method in class org.neo4j.driver.v1.Config.TlsAuthenticationConfig
Using full authentication: only TLS connections with certificates signed by a given trusted CA will be accepted.

V

value() - Method in interface org.neo4j.driver.v1.Pair
 
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(char...) - 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(short...) - 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(String) - Static method in class org.neo4j.driver.v1.Values
 
value(char) - 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(short) - Static method in class org.neo4j.driver.v1.Values
 
value(byte) - 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
 
valueAsBoolean() - Static method in class org.neo4j.driver.v1.Values
 
valueAsDouble() - Static method in class org.neo4j.driver.v1.Values
 
valueAsEntity() - Static method in class org.neo4j.driver.v1.Values
 
valueAsEntityIdentity() - Static method in class org.neo4j.driver.v1.Values
 
valueAsFloat() - Static method in class org.neo4j.driver.v1.Values
 
valueAsInteger() - Static method in class org.neo4j.driver.v1.Values
 
valueAsIs() - Static method in class org.neo4j.driver.v1.Values
 
valueAsList(Function<Value, T>) - Static method in class org.neo4j.driver.v1.Values
 
valueAsLong() - Static method in class org.neo4j.driver.v1.Values
 
valueAsMap() - Static method in class org.neo4j.driver.v1.Values
 
valueAsNode() - Static method in class org.neo4j.driver.v1.Values
 
valueAsNumber() - Static method in class org.neo4j.driver.v1.Values
 
valueAsObject() - Static method in class org.neo4j.driver.v1.Values
 
valueAsPath() - Static method in class org.neo4j.driver.v1.Values
 
valueAsRelationship() - Static method in class org.neo4j.driver.v1.Values
 
valueAsString() - Static method in class org.neo4j.driver.v1.Values
 
valueOf(String) - Static method in enum org.neo4j.driver.v1.StatementType
Returns the enum constant of this type with the specified name.
values() - Method in interface org.neo4j.driver.v1.MapAccessor
Retrieve all values of the underlying collection
values(Function<Value, T>) - Method in interface org.neo4j.driver.v1.MapAccessor
Map and retrieve all values of the underlying collection
values() - Static method in enum org.neo4j.driver.v1.StatementType
Returns an array containing the constants of this enum type, in the order they are declared.
Values - Class in org.neo4j.driver.v1
Utility for wrapping regular Java types and exposing them as Value objects.
values(Object...) - Static method in class org.neo4j.driver.v1.Values
 
valueToString() - Static method in class org.neo4j.driver.v1.Values
 

W

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(Map<String, Value>) - 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.
withTemplate(String) - Method in class org.neo4j.driver.v1.Statement
 
withTlsAuthConfig(Config.TlsAuthenticationConfig) - Method in class org.neo4j.driver.v1.Config.ConfigBuilder
Defines how to authenticate a server in TLS connections.
withTlsEnabled(boolean) - Method in class org.neo4j.driver.v1.Config.ConfigBuilder
Enable TLS in all connections with the server.
withUpdatedParameters(Map<String, 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 M N O P R S T U V W 

Copyright © 2016. All rights reserved.