Uses of Class
org.teiid.query.sql.lang.FromClause

Packages that use FromClause
org.teiid.query.parser   
org.teiid.query.resolver.util   
org.teiid.query.sql.lang   
 

Uses of FromClause in org.teiid.query.parser
 

Methods in org.teiid.query.parser that return FromClause
 FromClause SQLParser.joinedTable(ParseInfo info)
           
 FromClause SQLParser.tablePrimary(ParseInfo info)
           
 FromClause SQLParser.tableReference(ParseInfo info)
          Parse a join predicate clause, which occurs as an element in the FROM clause.
 

Uses of FromClause in org.teiid.query.resolver.util
 

Methods in org.teiid.query.resolver.util with parameters of type FromClause
static void ResolverUtil.findKeyPreserved(FromClause clause, java.util.Set<GroupSymbol> keyPreservingGroups, QueryMetadataInterface metadata)
           
 

Uses of FromClause in org.teiid.query.sql.lang
 

Subclasses of FromClause in org.teiid.query.sql.lang
 class ArrayTable
          Represents the ArrayTable table function.
 class JoinPredicate
          Represents a subpart of the FROM clause specifying a join within the FROM.
 class SubqueryFromClause
          A FROM subpart that represents a subquery.
 class TableFunctionReference
           
 class TextTable
          Represents the TEXTTABLE table function.
 class UnaryFromClause
          A FROM subpart that represents a single group.
 class XMLTable
           
 

Methods in org.teiid.query.sql.lang that return FromClause
 FromClause JoinPredicate.getLeftClause()
          Get left clause
 FromClause JoinPredicate.getRightClause()
          Get right clause
 

Methods in org.teiid.query.sql.lang that return types with arguments of type FromClause
 java.util.List<FromClause> From.getClauses()
          Get all the clauses in FROM
 

Methods in org.teiid.query.sql.lang with parameters of type FromClause
 void From.addClause(FromClause clause)
          Add a clause to the FROM
 void JoinPredicate.setLeftClause(FromClause predicate)
          Set left clause
 void JoinPredicate.setRightClause(FromClause predicate)
          Set right clause
 

Method parameters in org.teiid.query.sql.lang with type arguments of type FromClause
 void From.addClauses(java.util.Collection<? extends FromClause> toAdd)
          Add clauses to the FROM
 void From.setClauses(java.util.List<FromClause> clauses)
          Set all the clauses
 

Constructors in org.teiid.query.sql.lang with parameters of type FromClause
JoinPredicate(FromClause leftClause, FromClause rightClause, JoinType type)
          Construct a JoinPredicate between two clauses of the specified type.
JoinPredicate(FromClause leftClause, FromClause rightClause, JoinType type, Criteria criteria)
          Construct a JoinPredicate between two clauses of the specified type.
JoinPredicate(FromClause leftClause, FromClause rightClause, JoinType type, java.util.List criteria)
          Construct a JoinPredicate between two clauses of the specified type.
 

Constructor parameters in org.teiid.query.sql.lang with type arguments of type FromClause
From(java.util.List<? extends FromClause> parameters)
          Constructs an instance of this class from an ordered set of from clauses
 



Copyright © 2011. All Rights Reserved.