Uses of Class
org.modeshape.graph.query.plan.PlanNode.Traversal

Packages that use PlanNode.Traversal
org.modeshape.graph.query.plan This package defines the Planner interface, the CanonicalPlanner implementation, and the PlanNode class that is used to represent a canonical query plan. 
 

Uses of PlanNode.Traversal in org.modeshape.graph.query.plan
 

Methods in org.modeshape.graph.query.plan that return PlanNode.Traversal
static PlanNode.Traversal PlanNode.Traversal.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static PlanNode.Traversal[] PlanNode.Traversal.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.modeshape.graph.query.plan with parameters of type PlanNode.Traversal
 List<PlanNode> PlanNode.findAllAtOrBelow(PlanNode.Traversal order)
          Find all of the nodes that are at or below this node.
 List<PlanNode> PlanNode.findAllAtOrBelow(PlanNode.Traversal order, PlanNode.Type typeToFind)
          Find all of the nodes of the specified type that are at or below this node.
 List<PlanNode> PlanNode.findAllAtOrBelow(PlanNode.Traversal order, PlanNode.Type firstTypeToFind, PlanNode.Type... additionalTypesToFind)
          Find all of the nodes with one of the specified types that are at or below this node.
 List<PlanNode> PlanNode.findAllAtOrBelow(PlanNode.Traversal order, Set<PlanNode.Type> typesToFind)
          Find all of the nodes with one of the specified types that are at or below this node.
 PlanNode PlanNode.findAtOrBelow(PlanNode.Traversal order, PlanNode.Type typeToFind)
          Find the first node with the specified type that are at or below this node.
 PlanNode PlanNode.findAtOrBelow(PlanNode.Traversal order, PlanNode.Type firstTypeToFind, PlanNode.Type... additionalTypesToFind)
          Find the first node with one of the specified types that are at or below this node.
 PlanNode PlanNode.findAtOrBelow(PlanNode.Traversal order, Set<PlanNode.Type> typesToFind)
          Find the first node with one of the specified types that are at or below this node.
 



Copyright © 2008-2011 JBoss, a division of Red Hat. All Rights Reserved.