Uses of Class
org.jboss.dna.graph.query.model.JoinType

Packages that use JoinType
org.jboss.dna.graph.query.model The Abstract Query Model is a vocabulary that can be used to construct a language-neutral representation of a query. 
org.jboss.dna.graph.query.process This package defines the QueryProcessor interface, which is responsible for constructing for each query a tree of ProcessingComponent objects that each are responsible for processing a specific aspect of the query and returning the tuples to the parent component. 
 

Uses of JoinType in org.jboss.dna.graph.query.model
 

Methods in org.jboss.dna.graph.query.model that return JoinType
static JoinType JoinType.forSymbol(String symbol)
          Attempt to find the JoinType given a symbol.
 JoinType Join.getType()
          Get the type of join.
static JoinType JoinType.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static JoinType[] JoinType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Constructors in org.jboss.dna.graph.query.model with parameters of type JoinType
Join(Source left, JoinType type, Source right, JoinCondition joinCondition)
          Create a join of the left and right sources, using the supplied join condition.
 

Uses of JoinType in org.jboss.dna.graph.query.process
 

Methods in org.jboss.dna.graph.query.process that return JoinType
 JoinType JoinComponent.getJoinType()
          Get the type of join this processor represents.
 

Constructors in org.jboss.dna.graph.query.process with parameters of type JoinType
MergeJoinComponent(QueryContext context, ProcessingComponent left, ProcessingComponent right, ChildNodeJoinCondition condition, JoinType joinType)
           
MergeJoinComponent(QueryContext context, ProcessingComponent left, ProcessingComponent right, EquiJoinCondition condition, JoinType joinType)
           
MergeJoinComponent(QueryContext context, ProcessingComponent left, ProcessingComponent right, SameNodeJoinCondition condition, JoinType joinType)
           
NestedLoopJoinComponent(QueryContext context, ProcessingComponent left, ProcessingComponent right, JoinCondition condition, JoinType joinType)
           
 



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