| Package | Description |
|---|---|
| org.neo4j.graphalgo |
Scalable graph algorithms like shortest path and others for Neo4j which
can be easily accessed via
GraphAlgoFactory. |
| org.neo4j.graphdb.traversal |
Traversal framework.
|
| org.neo4j.kernel |
Implementation for embedding a Neo4j graph database in an application.
|
| Modifier and Type | Method and Description |
|---|---|
static PathFinder<WeightedPath> |
GraphAlgoFactory.dijkstra(PathExpander expander,
InitialStateFactory stateFactory,
CostEvaluator<Double> costEvaluator)
|
static PathFinder<WeightedPath> |
GraphAlgoFactory.dijkstra(PathExpander expander,
InitialStateFactory stateFactory,
String relationshipPropertyRepresentingCost)
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
InitialBranchState<STATE>
Factory for initial state of
TraversalBranches in a traversal. |
| Modifier and Type | Class and Description |
|---|---|
static class |
InitialBranchState.Adapter<STATE> |
static class |
InitialBranchState.State<STATE>
Branch state evaluator for an initial state.
|
static class |
InitialStateFactory.AsInitialBranchState<STATE>
Deprecated.
Wraps an
InitialStateFactory in a InitialBranchState |
| Modifier and Type | Field and Description |
|---|---|
static InitialStateFactory |
InitialStateFactory.NO_STATE
Deprecated.
An
InitialStateFactory which returns null as state. |
| Modifier and Type | Method and Description |
|---|---|
<STATE> TraversalDescription |
TraversalDescription.expand(PathExpander<STATE> expander,
InitialStateFactory<STATE> initialState)
Sets the
PathExpander as the expander of relationships,
discarding all previous calls to
TraversalDescription.relationships(RelationshipType) and
TraversalDescription.relationships(RelationshipType, Direction) or any other expand method. |
| Constructor and Description |
|---|
InitialStateFactory.AsInitialBranchState(InitialStateFactory<STATE> factory) |
| Modifier and Type | Method and Description |
|---|---|
static <STATE> InitialStateFactory<STATE> |
Traversal.initialState(STATE initialState)
InitialStateFactory which always returns the supplied initialState. |
Copyright © 2002-2013 The Neo4j Graph Database Project. All Rights Reserved.