| Package | Description |
|---|---|
| org.neo4j.cypher.javacompat |
Execute Cypher queries from Java code.
|
| org.neo4j.graphdb |
The core graph database API.
|
| org.neo4j.graphdb.index |
Integrated API for node and relationship indexing.
|
| org.neo4j.helpers.collection |
Collections utilities - Iterator/Iterable utilities and creating
Maps. |
| org.neo4j.kernel |
Implementation for embedding a Neo4j graph database in an application.
|
| org.neo4j.tooling |
| Modifier and Type | Class and Description |
|---|---|
class |
ExecutionResult
Holds Cypher query result sets, in tabular form.
|
| Modifier and Type | Method and Description |
|---|---|
ResourceIterable<Node> |
GraphDatabaseService.findNodesByLabelAndProperty(Label label,
String key,
Object value)
Returns all nodes having the label, and the wanted property value.
|
ResourceIterable<Label> |
Node.getLabels()
Lists all labels attached to this node.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
IndexHits<T>
An
Iterator with additional IndexHits.size() and IndexHits.close()
methods on it, used for iterating over index query results. |
| Modifier and Type | Method and Description |
|---|---|
static <T> ResourceIterable<T> |
Iterables.asResourceIterable(Iterable<T> labels) |
| Modifier and Type | Method and Description |
|---|---|
ResourceIterable<Node> |
InternalAbstractGraphDatabase.findNodesByLabelAndProperty(Label myLabel,
String key,
Object value) |
| Modifier and Type | Method and Description |
|---|---|
ResourceIterable<Label> |
GlobalGraphOperations.getAllLabels()
Returns all labels currently in the underlying store.
|
ResourceIterable<Node> |
GlobalGraphOperations.getAllNodesWithLabel(Label label)
|
Copyright © 2002-2013 The Neo4j Graph Database Project. All Rights Reserved.