- canContainResults() - Method in class org.neo4j.graphdb.QueryExecutionType
-
Signifies that the execution of the query could produce a result.
- canUpdateData() - Method in class org.neo4j.graphdb.QueryExecutionType
-
Signifies that the execution of the query could perform changes to the data.
- canUpdateSchema() - Method in class org.neo4j.graphdb.QueryExecutionType
-
Signifies that the execution of the query updates the schema.
- check(TraversalBranch) - Method in interface org.neo4j.graphdb.traversal.UniquenessFilter
-
Checks whether or not branch
is unique, and hence can be
visited in this traversal.
- checkFirst(TraversalBranch) - Method in interface org.neo4j.graphdb.traversal.UniquenessFilter
-
The check whether or not to expand the first branch is a separate
method because it may contain checks which would be unnecessary for
all other checks.
- checkFull(Path) - Method in interface org.neo4j.graphdb.traversal.BidirectionalUniquenessFilter
-
- close() - Method in interface org.neo4j.graphdb.index.IndexHits
-
Closes the underlying search result.
- close() - Method in interface org.neo4j.graphdb.Result
-
Closes the result, freeing up any resources held by the result.
- close() - Method in interface org.neo4j.graphdb.Transaction
-
- collisionEvaluator(Evaluator) - Method in interface org.neo4j.graphdb.traversal.BidirectionalTraversalDescription
-
Sets the
Evaluator
to use for branch collisions.
- collisionEvaluator(PathEvaluator) - Method in interface org.neo4j.graphdb.traversal.BidirectionalTraversalDescription
-
- collisionPolicy(BranchCollisionPolicy) - Method in interface org.neo4j.graphdb.traversal.BidirectionalTraversalDescription
-
Sets the collision policy to use during this traversal.
- columnAs(String) - Method in interface org.neo4j.graphdb.Result
-
Returns an iterator with the result objects from a single column of the result set.
- columns() - Method in interface org.neo4j.graphdb.Result
-
The exact names used to represent each column in the result set.
- Configuration - Interface in org.neo4j.graphdb.config
-
Provide the basic operation that one could perform on a set of configurations.
- ConstraintCreator - Interface in org.neo4j.graphdb.schema
-
A builder for entering details about a constraint to create.
- ConstraintDefinition - Interface in org.neo4j.graphdb.schema
-
Definition of a constraint.
- constraintFor(Label) - Method in interface org.neo4j.graphdb.schema.Schema
-
- ConstraintType - Enum in org.neo4j.graphdb.schema
-
Constraint type.
- ConstraintViolationException - Exception in org.neo4j.graphdb
-
Thrown when the database is asked to modify data in a way that violates one or more
constraints that it is expected to uphold.
- ConstraintViolationException(String) - Constructor for exception org.neo4j.graphdb.ConstraintViolationException
-
- ConstraintViolationException(String, Throwable) - Constructor for exception org.neo4j.graphdb.ConstraintViolationException
-
- containsUpdates() - Method in interface org.neo4j.graphdb.QueryStatistics
-
If the query updated the graph in any way, this method will return true.
- continues() - Method in enum org.neo4j.graphdb.traversal.Evaluation
-
- continues() - Method in interface org.neo4j.graphdb.traversal.TraversalBranch
-
- create() - Method in interface org.neo4j.graphdb.schema.ConstraintCreator
-
Creates a constraint with the details specified by the other methods in this interface.
- create() - Method in interface org.neo4j.graphdb.schema.IndexCreator
-
Creates an index with the details specified by the other methods in this interface.
- create(Evaluator, Predicate<Path>) - Method in interface org.neo4j.graphdb.traversal.BranchCollisionPolicy
-
- create(TraversalBranch, PathExpander) - Method in interface org.neo4j.graphdb.traversal.BranchOrderingPolicy
-
Instantiates a
BranchSelector
with
startBranch
as the
first branch to base a decision on "where to go next".
- create(BranchSelector, BranchSelector, int) - Method in interface org.neo4j.graphdb.traversal.SideSelectorPolicy
-
- create(Object) - Method in interface org.neo4j.graphdb.traversal.UniquenessFactory
-
Creates a new
UniquenessFilter
optionally with a parameter
to it, otherwise null if no parameter should be handed to it.
- createdNodes() - Method in interface org.neo4j.graphdb.event.TransactionData
-
Get the nodes that were created during the transaction.
- createdRelationships() - Method in interface org.neo4j.graphdb.event.TransactionData
-
Get the relationships that were created during the transaction.
- createNode() - Method in interface org.neo4j.graphdb.GraphDatabaseService
-
Creates a new node.
- createNode(Label...) - Method in interface org.neo4j.graphdb.GraphDatabaseService
-
Creates a new node and adds the provided labels to it.
- createRelationshipTo(Node, RelationshipType) - Method in interface org.neo4j.graphdb.Node
-
Creates a relationship between this node and another node.
- currentScore() - Method in interface org.neo4j.graphdb.index.IndexHits
-
Returns the score of the most recently fetched item from this iterator
(from
Iterator.next()
).
- currentSide() - Method in interface org.neo4j.graphdb.traversal.SideSelector
-
- get(Setting<T>) - Method in interface org.neo4j.graphdb.config.Configuration
-
Retrieve the value of a configuration
Setting
.
- get(String, Object) - Method in interface org.neo4j.graphdb.index.ReadableIndex
-
Returns exact matches from this index, given the key/value pair.
- get(String, Object, Node, Node) - Method in interface org.neo4j.graphdb.index.ReadableRelationshipIndex
-
Returns exact matches from this index, given the key/value pair.
- get(String) - Method in interface org.neo4j.graphdb.Result.ResultRow
-
- getAllLabels() - Method in interface org.neo4j.graphdb.GraphDatabaseService
-
Returns all labels currently in the underlying store.
- getAllLabelsInUse() - Method in interface org.neo4j.graphdb.GraphDatabaseService
-
Returns all labels currently in the underlying store.
- getAllNodes() - Method in interface org.neo4j.graphdb.GraphDatabaseService
-
Returns all nodes in the graph.
- getAllProperties() - Method in interface org.neo4j.graphdb.PropertyContainer
-
Returns all existing properties.
- getAllPropertyKeys() - Method in interface org.neo4j.graphdb.GraphDatabaseService
-
Returns all property keys currently in the underlying store.
- getAllRelationships() - Method in interface org.neo4j.graphdb.GraphDatabaseService
-
Returns all relationships in the graph.
- getAllRelationshipTypes() - Method in interface org.neo4j.graphdb.GraphDatabaseService
-
Returns all relationship types currently in the underlying store.
- getAllRelationshipTypesInUse() - Method in interface org.neo4j.graphdb.GraphDatabaseService
-
Returns all relationship types currently in the underlying store.
- getArguments() - Method in interface org.neo4j.graphdb.ExecutionPlanDescription
-
Retrieve argument map for the associated execution step
Valid arguments are all Java primitive values, Strings, Arrays of those, and Maps from Strings to
valid arguments.
- getAutoIndex() - Method in interface org.neo4j.graphdb.index.AutoIndexer
-
Deprecated.
Returns the auto index used by the auto indexer.
- getAutoIndex() - Method in interface org.neo4j.graphdb.index.RelationshipAutoIndexer
-
Deprecated.
- getAutoIndexedProperties() - Method in interface org.neo4j.graphdb.index.AutoIndexer
-
Deprecated.
Returns the set of property names that are currently monitored for auto
indexing.
- getBoolean(String) - Method in interface org.neo4j.graphdb.Result.ResultRow
-
- getChildren() - Method in interface org.neo4j.graphdb.ExecutionPlanDescription
-
Retrieves the children of this execution step.
- getCode() - Method in interface org.neo4j.graphdb.Notification
-
Returns a notification code for the discovered issue.
- getColumn() - Method in class org.neo4j.graphdb.InputPosition
-
The column number referred to by the position; column numbers start at 1.
- getCompletedCount() - Method in class org.neo4j.graphdb.index.IndexPopulationProgress
-
- getCompletedPercentage() - Method in class org.neo4j.graphdb.index.IndexPopulationProgress
-
- getConfiguration(Index<? extends PropertyContainer>) - Method in interface org.neo4j.graphdb.index.IndexManager
-
Returns the configuration for index
.
- getConstraints(Label) - Method in interface org.neo4j.graphdb.schema.Schema
-
- getConstraints(RelationshipType) - Method in interface org.neo4j.graphdb.schema.Schema
-
- getConstraints() - Method in interface org.neo4j.graphdb.schema.Schema
-
- getConstraintsAdded() - Method in interface org.neo4j.graphdb.QueryStatistics
-
Returns the number of constraints added by this query.
- getConstraintsRemoved() - Method in interface org.neo4j.graphdb.QueryStatistics
-
Returns the number of constraints removed by this query.
- getConstraintType() - Method in interface org.neo4j.graphdb.schema.ConstraintDefinition
-
- getDbHits() - Method in interface org.neo4j.graphdb.ExecutionPlanDescription.ProfilerStatistics
-
- getDefaultValue() - Method in interface org.neo4j.graphdb.config.Setting
-
Get the default value of this setting, as a string.
- getDegree() - Method in interface org.neo4j.graphdb.Node
-
Returns the number of relationships connected to this node regardless of
direction or type.
- getDegree(RelationshipType) - Method in interface org.neo4j.graphdb.Node
-
Returns the number of relationships of a given type
connected to this node.
- getDegree(Direction) - Method in interface org.neo4j.graphdb.Node
-
Returns the number of relationships of a given direction
connected to this node.
- getDegree(RelationshipType, Direction) - Method in interface org.neo4j.graphdb.Node
-
Returns the number of relationships of a given type
and direction
connected to this node.
- getDescription() - Method in interface org.neo4j.graphdb.Notification
-
Returns a longer description of the notification.
- getEndNode() - Method in interface org.neo4j.graphdb.Relationship
-
Returns the end node of this relationship.
- getEntityType() - Method in interface org.neo4j.graphdb.index.ReadableIndex
-
- getExecutionPlanDescription() - Method in interface org.neo4j.graphdb.Result
-
Returns a description of the query plan used to produce this result.
- getGraphDatabase() - Method in interface org.neo4j.graphdb.index.ReadableIndex
-
- getGraphDatabase() - Method in interface org.neo4j.graphdb.PropertyContainer
-
- getId() - Method in interface org.neo4j.graphdb.Node
-
Returns the unique id of this node.
- getId() - Method in interface org.neo4j.graphdb.Relationship
-
Returns the unique id of this relationship.
- getIdentifiers() - Method in interface org.neo4j.graphdb.ExecutionPlanDescription
-
- getIndexes(Label) - Method in interface org.neo4j.graphdb.schema.Schema
-
- getIndexes() - Method in interface org.neo4j.graphdb.schema.Schema
-
- getIndexesAdded() - Method in interface org.neo4j.graphdb.QueryStatistics
-
Returns the number of indexes added by this query.
- getIndexesRemoved() - Method in interface org.neo4j.graphdb.QueryStatistics
-
Returns the number of indexes removed by this query.
- getIndexFailure(IndexDefinition) - Method in interface org.neo4j.graphdb.schema.Schema
-
- getIndexPopulationProgress(IndexDefinition) - Method in interface org.neo4j.graphdb.schema.Schema
-
Poll the database for the population progress.
- getIndexState(IndexDefinition) - Method in interface org.neo4j.graphdb.schema.Schema
-
Poll the database for the state of a given index.
- getLabel() - Method in interface org.neo4j.graphdb.schema.ConstraintDefinition
-
- getLabel() - Method in interface org.neo4j.graphdb.schema.IndexDefinition
-
- getLabels() - Method in interface org.neo4j.graphdb.Node
-
Lists all labels attached to this node.
- getLabelsAdded() - Method in interface org.neo4j.graphdb.QueryStatistics
-
Returns the number of labels added to any node by this query.
- getLabelsRemoved() - Method in interface org.neo4j.graphdb.QueryStatistics
-
Returns the number of labels removed from any node by this query.
- getLine() - Method in class org.neo4j.graphdb.InputPosition
-
The line number referred to by the position; line numbers start at 1.
- getName() - Method in interface org.neo4j.graphdb.ExecutionPlanDescription
-
Retrieves the name of this execution step.
- getName() - Method in interface org.neo4j.graphdb.index.ReadableIndex
-
- getNode(String) - Method in interface org.neo4j.graphdb.Result.ResultRow
-
- getNodeAutoIndexer() - Method in interface org.neo4j.graphdb.index.IndexManager
-
- getNodeById(long) - Method in interface org.neo4j.graphdb.GraphDatabaseService
-
Looks up a node by id.
- getNodes() - Method in interface org.neo4j.graphdb.Relationship
-
Returns the two nodes that are attached to this relationship.
- getNodesCreated() - Method in interface org.neo4j.graphdb.QueryStatistics
-
Returns the number of nodes created by this query.
- getNodesDeleted() - Method in interface org.neo4j.graphdb.QueryStatistics
-
Returns the number of nodes deleted by this query.
- getNotifications() - Method in interface org.neo4j.graphdb.Result
-
Provides notifications about the query producing this result.
- getNumber(String) - Method in interface org.neo4j.graphdb.Result.ResultRow
-
- getNumberOfPathsReturned() - Method in interface org.neo4j.graphdb.traversal.TraversalMetadata
-
- getNumberOfRelationshipsTraversed() - Method in interface org.neo4j.graphdb.traversal.TraversalMetadata
-
- getOffset() - Method in class org.neo4j.graphdb.InputPosition
-
The character offset referred to by this position; offset numbers start at 0.
- getOrCreate(String, Object) - Method in class org.neo4j.graphdb.index.UniqueFactory
-
Get the indexed entity, creating it (exactly once) if no indexed entity exists.
- getOrCreateWithOutcome(String, Object) - Method in class org.neo4j.graphdb.index.UniqueFactory
-
Get the indexed entity, creating it (exactly once) if no indexed entity exists.
- getOtherNode(Node) - Method in interface org.neo4j.graphdb.Relationship
-
A convenience operation that, given a node that is attached to this
relationship, returns the other node.
- getPath(String) - Method in interface org.neo4j.graphdb.Result.ResultRow
-
- getPosition() - Method in interface org.neo4j.graphdb.Notification
-
The position in the query where this notification points to.
- getProfilerStatistics() - Method in interface org.neo4j.graphdb.ExecutionPlanDescription
-
Retrieve the statistics collected from profiling this query.
- getProperties(String...) - Method in interface org.neo4j.graphdb.PropertyContainer
-
Returns specified existing properties.
- getPropertiesSet() - Method in interface org.neo4j.graphdb.QueryStatistics
-
Returns the number of properties set by this query.
- getProperty(String) - Method in interface org.neo4j.graphdb.PropertyContainer
-
Returns the property value associated with the given key.
- getProperty(String, Object) - Method in interface org.neo4j.graphdb.PropertyContainer
-
Returns the property value associated with the given key, or a default
value.
- getPropertyKeys() - Method in interface org.neo4j.graphdb.PropertyContainer
-
Returns all existing property keys, or an empty iterable if this property
container has no properties.
- getPropertyKeys() - Method in interface org.neo4j.graphdb.schema.ConstraintDefinition
-
- getPropertyKeys() - Method in interface org.neo4j.graphdb.schema.IndexDefinition
-
- getQueryExecutionType() - Method in interface org.neo4j.graphdb.Result
-
Indicates what kind of query execution produced this result.
- getQueryStatistics() - Method in interface org.neo4j.graphdb.Result
-
Statistics about the effects of the query.
- getRelationship(String) - Method in interface org.neo4j.graphdb.Result.ResultRow
-
- getRelationshipAutoIndexer() - Method in interface org.neo4j.graphdb.index.IndexManager
-
- getRelationshipById(long) - Method in interface org.neo4j.graphdb.GraphDatabaseService
-
Looks up a relationship by id.
- getRelationships() - Method in interface org.neo4j.graphdb.Node
-
Returns all the relationships attached to this node.
- getRelationships(RelationshipType...) - Method in interface org.neo4j.graphdb.Node
-
Returns all the relationships of any of the types in types
that are attached to this node, regardless of direction.
- getRelationships(Direction, RelationshipType...) - Method in interface org.neo4j.graphdb.Node
-
Returns all the relationships of any of the types in types
that are attached to this node and have the given direction
.
- getRelationships(Direction) - Method in interface org.neo4j.graphdb.Node
-
- getRelationships(RelationshipType, Direction) - Method in interface org.neo4j.graphdb.Node
-
Returns all relationships with the given type and direction that are
attached to this node.
- getRelationshipsCreated() - Method in interface org.neo4j.graphdb.QueryStatistics
-
Returns the number of relationships created by this query.
- getRelationshipsDeleted() - Method in interface org.neo4j.graphdb.QueryStatistics
-
Returns the number of relationships deleted by this query.
- getRelationshipType() - Method in interface org.neo4j.graphdb.schema.ConstraintDefinition
-
- getRelationshipTypes() - Method in interface org.neo4j.graphdb.Node
-
Returns relationship types which this node has one more relationships
for.
- getResource() - Method in interface org.neo4j.graphdb.event.KernelEventHandler
-
Returns the resource associated with this event handler, or null
if no specific resource is associated with this handler or if it isn't
desirable to expose it.
- getRows() - Method in interface org.neo4j.graphdb.ExecutionPlanDescription.ProfilerStatistics
-
- getSeverity() - Method in interface org.neo4j.graphdb.Notification
-
Returns the severity level of this notification.
- getSingle() - Method in interface org.neo4j.graphdb.index.IndexHits
-
Returns the first and only item from the result iterator, or null
if there was none.
- getSingleRelationship(RelationshipType, Direction) - Method in interface org.neo4j.graphdb.Node
-
Returns the only relationship of a given type and direction that is
attached to this node, or null
.
- getStartNode() - Method in interface org.neo4j.graphdb.Relationship
-
Returns the start node of this relationship.
- getState() - Method in interface org.neo4j.graphdb.traversal.BranchState
-
- getStatusCode() - Method in exception org.neo4j.graphdb.QueryExecutionException
-
- getString(String) - Method in interface org.neo4j.graphdb.Result.ResultRow
-
- getTitle() - Method in interface org.neo4j.graphdb.Notification
-
Returns a short summary of the notification.
- getTotalCount() - Method in class org.neo4j.graphdb.index.IndexPopulationProgress
-
- getType() - Method in interface org.neo4j.graphdb.Relationship
-
Returns the type of this relationship.
- GraphDatabaseService - Interface in org.neo4j.graphdb
-
The main access point to a running Neo4j instance.
- ReadableIndex<T extends PropertyContainer> - Interface in org.neo4j.graphdb.index
-
An index that allows for read only operations.
- ReadableRelationshipIndex - Interface in org.neo4j.graphdb.index
-
- registerKernelEventHandler(KernelEventHandler) - Method in interface org.neo4j.graphdb.GraphDatabaseService
-
Registers handler
as a handler for kernel events which
are generated from different places in the lifecycle of the kernel.
- registerTransactionEventHandler(TransactionEventHandler<T>) - Method in interface org.neo4j.graphdb.GraphDatabaseService
-
Registers handler
as a handler for transaction events which
are generated from different places in the lifecycle of each
transaction.
- Relationship - Interface in org.neo4j.graphdb
-
A relationship between two nodes in the graph.
- RelationshipAutoIndexer - Interface in org.neo4j.graphdb.index
-
- RelationshipIndex - Interface in org.neo4j.graphdb.index
-
Extends the ReadableRelationshipIndex and the Index interfaces
for completing the set of available types.
- relationshipIndexNames() - Method in interface org.neo4j.graphdb.index.IndexManager
-
- relationshipRepresentation(Path, Node, Relationship) - Method in class org.neo4j.graphdb.traversal.Paths.DefaultPathDescriptor
-
- relationshipRepresentation(T, Node, Relationship) - Method in interface org.neo4j.graphdb.traversal.Paths.PathDescriptor
-
- relationships() - Method in interface org.neo4j.graphdb.Path
-
Returns all the relationships in between the nodes which this path
consists of.
- relationships(RelationshipType) - Method in interface org.neo4j.graphdb.traversal.TraversalDescription
-
Adds type
to the list of relationship types to traverse.
- relationships(RelationshipType, Direction) - Method in interface org.neo4j.graphdb.traversal.TraversalDescription
-
Adds type
to the list of relationship types to traverse in
the given direction
.
- relationships() - Method in interface org.neo4j.graphdb.traversal.Traverser
-
- relationshipTraversed() - Method in interface org.neo4j.graphdb.traversal.TraversalContext
-
Reports that one more relationship has been traversed in this
traversal.
- RelationshipType - Interface in org.neo4j.graphdb
-
A relationship type is mandatory on all relationships and is used to navigate
the graph.
- release() - Method in interface org.neo4j.graphdb.Lock
-
Releases this lock before the transaction finishes.
- remove(T, String, Object) - Method in interface org.neo4j.graphdb.index.Index
-
Removes a key/value pair for entity
from the index.
- remove(T, String) - Method in interface org.neo4j.graphdb.index.Index
-
Removes key/value pairs for entity
where key is key
from the index.
- remove(T) - Method in interface org.neo4j.graphdb.index.Index
-
- remove(RelationshipType) - Method in class org.neo4j.graphdb.PathExpanderBuilder
-
Remove expansion of type
in any direction from the PathExpander configuration.
- remove() - Method in interface org.neo4j.graphdb.Result
-
Removing rows from the result is not supported.
- removeConfiguration(Index<? extends PropertyContainer>, String) - Method in interface org.neo4j.graphdb.index.IndexManager
-
EXPERT: Removes a configuration parameter from an index.
- removedLabels() - Method in interface org.neo4j.graphdb.event.TransactionData
-
Get all labels that have been removed from nodes during the transaction.
- removedNodeProperties() - Method in interface org.neo4j.graphdb.event.TransactionData
-
Get the properties that had a value removed from a node during the
transaction.
- removedRelationshipProperties() - Method in interface org.neo4j.graphdb.event.TransactionData
-
Get the properties that had a value removed from a relationship during
the transaction.
- removeLabel(Label) - Method in interface org.neo4j.graphdb.Node
-
Removes a
Label
from this node.
- removeProperty(String) - Method in interface org.neo4j.graphdb.PropertyContainer
-
Removes the property associated with the given key and returns the old
value.
- requestedExecutionPlanDescription() - Method in class org.neo4j.graphdb.QueryExecutionType
-
- resolveDependency(Class<T>) - Method in class org.neo4j.graphdb.DependencyResolver.Adapter
-
- resolveDependency(Class<T>) - Method in interface org.neo4j.graphdb.DependencyResolver
-
Tries to resolve a dependency that matches a given class.
- resolveDependency(Class<T>, DependencyResolver.SelectionStrategy) - Method in interface org.neo4j.graphdb.DependencyResolver
-
Tries to resolve a dependency that matches a given class.
- Result - Interface in org.neo4j.graphdb
-
- Result.ResultRow - Interface in org.neo4j.graphdb
-
Describes a row of a result.
- Result.ResultVisitor<VisitationException extends Exception> - Interface in org.neo4j.graphdb
-
- resultAsString() - Method in interface org.neo4j.graphdb.Result
-
Provides a textual representation of the query result.
- reverse() - Method in enum org.neo4j.graphdb.Direction
-
- reverse() - Method in interface org.neo4j.graphdb.PathExpander
-
Returns a new instance with the exact expansion logic, but reversed.
- reverse() - Method in class org.neo4j.graphdb.traversal.InitialBranchState.Adapter
-
- reverse() - Method in interface org.neo4j.graphdb.traversal.InitialBranchState
-
Creates a version of this state factory which produces reversed initial state,
used in bidirectional traversals.
- reverse() - Method in class org.neo4j.graphdb.traversal.InitialBranchState.State
-
- reverse() - Method in interface org.neo4j.graphdb.traversal.TraversalDescription
-
- reverseNodes() - Method in interface org.neo4j.graphdb.Path
-
Returns all the nodes in this path in reversed order, i.e.
- reverseRelationships() - Method in interface org.neo4j.graphdb.Path
-
Returns all the relationships in between the nodes which this path
consists of in reverse order, i.e.
- schema() - Method in interface org.neo4j.graphdb.GraphDatabaseService
-
Returns the
schema manager
where all things related to schema,
for example constraints and indexing on
labels
.
- Schema - Interface in org.neo4j.graphdb.schema
-
Interface for managing the schema of your graph database.
- Schema.IndexState - Enum in org.neo4j.graphdb.schema
-
The states that an index can be in.
- select(Class<T>, Iterable<T>) - Method in interface org.neo4j.graphdb.DependencyResolver.SelectionStrategy
-
Given a set of candidates, select an appropriate one.
- setConfiguration(Index<? extends PropertyContainer>, String, String) - Method in interface org.neo4j.graphdb.index.IndexManager
-
EXPERT: Sets a configuration parameter for an index.
- setEnabled(boolean) - Method in interface org.neo4j.graphdb.index.AutoIndexer
-
Deprecated.
Sets the AutoIndexer as enabled or not.
- setProperty(String, Object) - Method in interface org.neo4j.graphdb.PropertyContainer
-
Sets the property value for the given key to value
.
- setState(STATE) - Method in interface org.neo4j.graphdb.traversal.BranchState
-
- Setting<T> - Interface in org.neo4j.graphdb.config
-
Settings that can be provided in configurations are represented by instances of this interface, and are available
as static fields in various *Settings classes.
- settingName() - Method in exception org.neo4j.graphdb.config.InvalidSettingException
-
Get the name of the setting causing this exception.
- SeverityLevel - Enum in org.neo4j.graphdb
-
SeverityLevel indicates to a client the severity of a notification.
- shutdown() - Method in interface org.neo4j.graphdb.GraphDatabaseService
-
Shuts down Neo4j.
- sideSelector(SideSelectorPolicy, int) - Method in interface org.neo4j.graphdb.traversal.BidirectionalTraversalDescription
-
In a bidirectional traversal the traverser alternates which side
(start or end) to move further for each step.
- SideSelector - Interface in org.neo4j.graphdb.traversal
-
Dictates which side is the current side in a bidirectional traversal to traverse
the next step for.
- SideSelectorPolicies - Enum in org.neo4j.graphdb.traversal
-
A catalogue of convenient side selector policies for use in bidirectional traversals.
- SideSelectorPolicy - Interface in org.neo4j.graphdb.traversal
-
- simplePathToString(Path) - Static method in class org.neo4j.graphdb.traversal.Paths
-
Returns a quite simple string representation of a
Path
.
- simplePathToString(Path, String) - Static method in class org.neo4j.graphdb.traversal.Paths
-
Returns a quite simple string representation of a
Path
.
- singleNodePath(Node) - Static method in class org.neo4j.graphdb.traversal.Paths
-
- size() - Method in interface org.neo4j.graphdb.index.IndexHits
-
Returns the size of this iterable, in most scenarios this value is accurate
while in some scenarios near-accurate.
- sort(Comparator<? super Path>) - Method in interface org.neo4j.graphdb.traversal.TraversalDescription
-
- Sorting - Class in org.neo4j.graphdb.traversal
-
- startAutoIndexingProperty(String) - Method in interface org.neo4j.graphdb.index.AutoIndexer
-
Deprecated.
Start auto indexing a property.
- startNode() - Method in interface org.neo4j.graphdb.Path
-
Returns the start node of this path.
- startSide(TraversalDescription) - Method in interface org.neo4j.graphdb.traversal.BidirectionalTraversalDescription
-
- State(STATE, STATE) - Constructor for class org.neo4j.graphdb.traversal.InitialBranchState.State
-
- state() - Method in interface org.neo4j.graphdb.traversal.TraversalBranch
-
Returns the state associated with this branch.
- status() - Method in exception org.neo4j.graphdb.security.AuthorizationViolationException
-
The Neo4j status code associated with this exception type.
- stopAutoIndexingProperty(String) - Method in interface org.neo4j.graphdb.index.AutoIndexer
-
Deprecated.
Removes the argument from the set of auto indexed properties.
- stream() - Method in interface org.neo4j.graphdb.index.IndexHits
-
- success() - Method in interface org.neo4j.graphdb.Transaction
-
- terminate() - Method in interface org.neo4j.graphdb.Transaction
-
Marks this transaction as terminated, which means that it will be, much like in the case of failure,
unconditionally rolled back when
Transaction.close()
is called.
- toDepth(int) - Static method in class org.neo4j.graphdb.traversal.Evaluators
-
Returns an
Evaluator
which includes positions down to
depth
and prunes everything deeper than that.
- toString() - Method in class org.neo4j.graphdb.DynamicLabel
-
Deprecated.
- toString() - Method in class org.neo4j.graphdb.DynamicRelationshipType
-
Deprecated.
Returns a string representation of this dynamic relationship type.
- toString() - Method in class org.neo4j.graphdb.index.IndexPopulationProgress
-
- toString() - Method in interface org.neo4j.graphdb.Path
-
Returns a natural string representation of this path.
- toString() - Method in class org.neo4j.graphdb.QueryExecutionType
-
- Transaction - Interface in org.neo4j.graphdb
-
A programmatically handled transaction.
- TransactionData - Interface in org.neo4j.graphdb.event
-
Represents the data that has changed during the course of one transaction.
- TransactionEventHandler<T> - Interface in org.neo4j.graphdb.event
-
An event handler interface for Neo4j Transaction events.
- TransactionEventHandler.Adapter<T> - Class in org.neo4j.graphdb.event
-
- TransactionFailureException - Exception in org.neo4j.graphdb
-
Signals that a transaction failed and has been rolled back.
- TransactionFailureException(String) - Constructor for exception org.neo4j.graphdb.TransactionFailureException
-
- TransactionFailureException(String, Throwable) - Constructor for exception org.neo4j.graphdb.TransactionFailureException
-
- TransactionTerminatedException - Exception in org.neo4j.graphdb
-
Signals that the transaction within which the failed operations ran
has been terminated with
Transaction.terminate()
.
- TransactionTerminatedException() - Constructor for exception org.neo4j.graphdb.TransactionTerminatedException
-
- TransientDatabaseFailureException - Exception in org.neo4j.graphdb
-
Indicates that the database is in, or meanwhile a unit of work was executing, got into an intermediate state
where the unit of work, and potentially other units of work as well, couldn't complete successfully.
- TransientDatabaseFailureException(String, Throwable) - Constructor for exception org.neo4j.graphdb.TransientDatabaseFailureException
-
- TransientDatabaseFailureException(String) - Constructor for exception org.neo4j.graphdb.TransientDatabaseFailureException
-
- TransientFailureException - Exception in org.neo4j.graphdb
-
Indicates a type of failure that is intermediate and, in a way benign.
- TransientTransactionFailureException - Exception in org.neo4j.graphdb
-
Indicates that a transaction couldn't complete successfully due to an intermediate failure.
- TransientTransactionFailureException(String, Throwable) - Constructor for exception org.neo4j.graphdb.TransientTransactionFailureException
-
- TransientTransactionFailureException(String) - Constructor for exception org.neo4j.graphdb.TransientTransactionFailureException
-
- TraversalBranch - Interface in org.neo4j.graphdb.traversal
-
Represents a
position
and a
PathExpander
with a
traversal context, for example parent and an iterator of relationships to go
next.
- TraversalContext - Interface in org.neo4j.graphdb.traversal
-
Provides a context for
TraversalBranch
es which they need to
move further and report their progress.
- traversalDescription() - Method in interface org.neo4j.graphdb.GraphDatabaseService
-
Factory method for unidirectional traversal descriptions.
- TraversalDescription - Interface in org.neo4j.graphdb.traversal
-
Represents a description of a traversal.
- TraversalMetadata - Interface in org.neo4j.graphdb.traversal
-
Provides metadata about a traversal.
- traverse(Node, Node) - Method in interface org.neo4j.graphdb.traversal.BidirectionalTraversalDescription
-
Traverse between a given start
and end
node with all
applied rules and behavior in this traversal description.
- traverse(Iterable<Node>, Iterable<Node>) - Method in interface org.neo4j.graphdb.traversal.BidirectionalTraversalDescription
-
Traverse between a set of start
and end
nodes with all
applied rules and behavior in this traversal description.
- traverse(Node) - Method in interface org.neo4j.graphdb.traversal.TraversalDescription
-
Traverse from a single start node based on all the rules and behavior
in this description.
- traverse(Node...) - Method in interface org.neo4j.graphdb.traversal.TraversalDescription
-
Traverse from a set of start nodes based on all the rules and behavior
in this description.
- traverse(Iterable<Node>) - Method in interface org.neo4j.graphdb.traversal.TraversalDescription
-
Traverse from a iterable of start nodes based on all the rules and behavior
in this description.
- Traverser - Interface in org.neo4j.graphdb.traversal
-
This interface represents the traverser which is used to step through the
results of a traversal.
- validate(Configuration, URL) - Method in interface org.neo4j.graphdb.security.URLAccessRule
-
Validate this rule against the specified URL and configuration, and throw a
URLAccessValidationError
if the URL is not permitted for access.
- value() - Method in interface org.neo4j.graphdb.event.PropertyEntry
-
Get the value of the modified property.
- valueOf(String) - Static method in enum org.neo4j.graphdb.Direction
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.neo4j.graphdb.event.ErrorState
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.neo4j.graphdb.event.KernelEventHandler.ExecutionOrder
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.neo4j.graphdb.QueryExecutionType.QueryType
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.neo4j.graphdb.schema.ConstraintType
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.neo4j.graphdb.schema.Schema.IndexState
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.neo4j.graphdb.SeverityLevel
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.neo4j.graphdb.traversal.BranchCollisionPolicies
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.neo4j.graphdb.traversal.BranchOrderingPolicies
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.neo4j.graphdb.traversal.Evaluation
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.neo4j.graphdb.traversal.SideSelectorPolicies
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.neo4j.graphdb.traversal.Uniqueness
-
Returns the enum constant of this type with the specified name.
- values() - Static method in enum org.neo4j.graphdb.Direction
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.neo4j.graphdb.event.ErrorState
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.neo4j.graphdb.event.KernelEventHandler.ExecutionOrder
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.neo4j.graphdb.QueryExecutionType.QueryType
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.neo4j.graphdb.schema.ConstraintType
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.neo4j.graphdb.schema.Schema.IndexState
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.neo4j.graphdb.SeverityLevel
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.neo4j.graphdb.traversal.BranchCollisionPolicies
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.neo4j.graphdb.traversal.BranchOrderingPolicies
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.neo4j.graphdb.traversal.Evaluation
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.neo4j.graphdb.traversal.SideSelectorPolicies
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.neo4j.graphdb.traversal.Uniqueness
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- visit(Result.ResultRow) - Method in interface org.neo4j.graphdb.Result.ResultVisitor
-
Visits the specified row.