Deprecated API


Contents
Deprecated Interfaces
org.neo4j.graphdb.traversal.PruneEvaluator
          becuase of the introduction of Evaluator which combines PruneEvaluator and filtering (Predicate of Paths). 
 

Deprecated Methods
org.neo4j.graphdb.traversal.TraversalDescription.filter(Predicate)
          because of the introduction of Evaluator. Use TraversalDescription.evaluator(Evaluator) instead which combines TraversalDescription.filter(Predicate) and TraversalDescription.prune(PruneEvaluator). The supplied Predicate will be wrapped by an Evaluator internally. 
org.neo4j.graphdb.PropertyContainer.getPropertyValues()
          in favor of using PropertyContainer.getPropertyKeys() in combination with PropertyContainer.getProperty(String). 
org.neo4j.graphdb.traversal.TraversalDescription.prune(PruneEvaluator)
          because of the introduction of Evaluator. Use TraversalDescription.evaluator(Evaluator) instead which combines TraversalDescription.filter(Predicate) and TraversalDescription.prune(PruneEvaluator). The supplied PruneEvaluator will be wrapped by an Evaluator internally. 
org.neo4j.kernel.Traversal.pruneAfterDepth(int)
          because of the introduction of Evaluator. The equivalent is Evaluators.toDepth(int). 
org.neo4j.kernel.Traversal.returnAll()
          because of the introduction of Evaluator. The equivalent is Evaluators.all(). 
org.neo4j.kernel.Traversal.returnAllButStartNode()
          because of the introduction of Evaluator. The equivalent is Evaluators.excludeStartPosition(). 
 



Copyright © 2011 The Neo4j Graph Database Project. All Rights Reserved.