Uses of Class
org.modeshape.graph.query.model.JoinType

Packages that use JoinType
org.modeshape.graph.query The Query API provides a mechanism for building and executing queries. 
org.modeshape.graph.query.model The Abstract Query Model is a vocabulary that can be used to construct a language-neutral representation of a query. 
org.modeshape.graph.query.parse This package defines the QueryParser interface, which defines a component that can parse a query represented in a specific language and produce the corresponding abstract query model representation. 
org.modeshape.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. 
org.modeshape.jcr.query   
org.modeshape.jcr.query.qom   
 

Uses of JoinType in org.modeshape.graph.query
 

Constructors in org.modeshape.graph.query with parameters of type JoinType
QueryBuilder.JoinClause(NamedSelector rightTable, JoinType type)
           
 

Uses of JoinType in org.modeshape.graph.query.model
 

Methods in org.modeshape.graph.query.model that return JoinType
static JoinType JoinType.forSymbol(String symbol)
          Attempt to find the JoinType given a symbol.
 JoinType Join.type()
          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.modeshape.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.modeshape.graph.query.parse
 

Methods in org.modeshape.graph.query.parse with parameters of type JoinType
protected  Join SqlQueryParser.join(Source left, JoinType joinType, Source right, JoinCondition joinCondition)
           
 

Uses of JoinType in org.modeshape.graph.query.process
 

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

Constructors in org.modeshape.graph.query.process with parameters of type JoinType
JoinComponent(QueryContext context, ProcessingComponent left, ProcessingComponent right, JoinCondition condition, JoinType 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)
           
 

Uses of JoinType in org.modeshape.jcr.query
 

Methods in org.modeshape.jcr.query with parameters of type JoinType
protected  JcrJoin JcrSql2QueryParser.join(Source left, JoinType joinType, Source right, JoinCondition joinCondition)
          
 

Uses of JoinType in org.modeshape.jcr.query.qom
 

Constructors in org.modeshape.jcr.query.qom with parameters of type JoinType
JcrJoin(JcrSource left, JoinType type, JcrSource right, JcrJoinCondition joinCondition)
          Create a join of the left and right sources, using the supplied join condition.
 



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