Uses of Class
org.sql.generation.api.grammar.query.joins.JoinType

Packages that use JoinType
org.sql.generation.api.grammar.builders.query Package to hold builders for SQL queries (SELECT -statements). 
org.sql.generation.api.grammar.query.joins This package provides syntax interfaces for joined tables, mostly used in FROM clause. 
 

Uses of JoinType in org.sql.generation.api.grammar.builders.query
 

Methods in org.sql.generation.api.grammar.builders.query with parameters of type JoinType
 TableReferenceBuilder TableReferenceBuilder.addNaturalJoin(JoinType joinType, TableReference right)
          Adds a natural join (NATURAL JOIN) to whatever current table of builder, and overwrites the current table with the result.
 TableReferenceBuilder TableReferenceBuilder.addQualifiedJoin(JoinType joinType, TableReference right, JoinSpecification joinSpec)
          Adds a qualified join (JOIN) to whatever current table of builder, and overwrites the current table with the result.
 

Uses of JoinType in org.sql.generation.api.grammar.query.joins
 

Fields in org.sql.generation.api.grammar.query.joins declared as JoinType
static JoinType JoinType.FULL_OUTER
          The FULL OUTER join.
static JoinType JoinType.INNER
          The INNER join, typically default.
static JoinType JoinType.LEFT_OUTER
          The LEFT OUTER join.
static JoinType JoinType.RIGHT_OUTER
          The RIGHT OUTER join.
 

Methods in org.sql.generation.api.grammar.query.joins that return JoinType
 JoinType QualifiedJoinedTable.getJoinType()
          Returns the join type for this JOIN.
 JoinType NaturalJoinedTable.getJoinType()
          Returns the join type for this NATURAL JOIN.
 



Copyright © 2010-2011. All Rights Reserved.