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.types.TypeSystem
 
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
 
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.
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
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 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.
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
 

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
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
 
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 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
 
error(String, Throwable) - Method in interface org.neo4j.driver.v1.Logger
 
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(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
 
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
 
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 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.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.
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

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
 
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
 
logging() - Method in class org.neo4j.driver.v1.Config
Logging provider
Logging - Interface in org.neo4j.driver.v1
 
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.
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
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.
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
 

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
 
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
 
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.
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

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.
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 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.
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
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
 
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
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
Deprecated.
trustStrategy() - Method in class org.neo4j.driver.v1.Config
 
trustSystemCertificates() - Static method in class org.neo4j.driver.v1.Config.TrustStrategy
 
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
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
 
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.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.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
 

W

warn(String, Object...) - Method in interface org.neo4j.driver.v1.Logger
 
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.
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.
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 M N O P R S T U V W 

Copyright © 2016. All rights reserved.