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

Packages that use FromClause
org.teiid.query.parser   
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.sql.lang
 

Subclasses of FromClause in org.teiid.query.sql.lang
 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 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
 

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.
 



Copyright © 2010. All Rights Reserved.