Uses of Interface
org.sql.generation.api.grammar.builders.query.TableReferenceBuilder

Packages that use TableReferenceBuilder
org.sql.generation.api.grammar.builders.query Package to hold builders for SQL queries (SELECT -statements). 
org.sql.generation.api.grammar.factories This package provides factories to create various builders and SQL syntax elements. 
 

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

Methods in org.sql.generation.api.grammar.builders.query that return TableReferenceBuilder
 TableReferenceBuilder TableReferenceBuilder.addCrossJoin(TableReference right)
          Adds a cross join (CROSS JOIN) to whatever current table of builder, and overwrites the current table with the result.
 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.
 TableReferenceBuilder TableReferenceBuilder.addUnionJoin(TableReference right)
          Adds an union join (UNION JOIN) to whatever current table of builder, and overwrites the current table with the result.
 

Methods in org.sql.generation.api.grammar.builders.query that return types with arguments of type TableReferenceBuilder
 List<TableReferenceBuilder> FromBuilder.getTableReferences()
          Returns a list of table reference builders in this builder.
 

Methods in org.sql.generation.api.grammar.builders.query with parameters of type TableReferenceBuilder
 FromBuilder FromBuilder.addTableReferences(TableReferenceBuilder... tableRefs)
          Adds table reference builders to this FROM clause.
 

Uses of TableReferenceBuilder in org.sql.generation.api.grammar.factories
 

Methods in org.sql.generation.api.grammar.factories that return TableReferenceBuilder
 TableReferenceBuilder TableReferenceFactory.tableBuilder(TableReferencePrimary firstTable)
          Creates a new TableReferenceBuilder typically used to build joined tables.
 



Copyright © 2010-2011. All Rights Reserved.