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
 

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.
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.
 



Copyright © 2010. All Rights Reserved.