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.Expander.addRelationsipFilter(Predicate)
          because of typo, use Expander.addRelationshipFilter(Predicate) instead 
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.GraphDatabaseService.getAllNodes()
          this operation can be found in GlobalGraphOperations instead. 
org.neo4j.kernel.AbstractGraphDatabase.getManagementBean(Class)
          since Neo4j may now have multiple beans implementing the same bean interface, this method has been deprecated in favor of AbstractGraphDatabase.getSingleManagementBean(Class) and AbstractGraphDatabase.getManagementBeans(Class) . Version 1.5 of Neo4j will be the last version to contain this method. 
org.neo4j.graphdb.PropertyContainer.getPropertyValues()
          in favor of using PropertyContainer.getPropertyKeys() in combination with PropertyContainer.getProperty(String). 
org.neo4j.graphdb.GraphDatabaseService.getRelationshipTypes()
          this operation can be found in GlobalGraphOperations instead. 
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 © 2002-2012 The Neo4j Graph Database Project. All Rights Reserved.