Uses of Interface
net.sf.jsqlparser.statement.select.FromItem

Packages that use FromItem
net.sf.jsqlparser.parser   
net.sf.jsqlparser.schema   
net.sf.jsqlparser.statement.select   
 

Uses of FromItem in net.sf.jsqlparser.parser
 

Methods in net.sf.jsqlparser.parser that return FromItem
 FromItem CCJSqlParser.FromItem()
           
 FromItem CCJSqlParser.SubJoin()
           
 

Uses of FromItem in net.sf.jsqlparser.schema
 

Classes in net.sf.jsqlparser.schema that implement FromItem
 class Table
          A table.
 

Uses of FromItem in net.sf.jsqlparser.statement.select
 

Classes in net.sf.jsqlparser.statement.select that implement FromItem
 class SubJoin
          A table created by "(tab1 join tab2)".
 class SubSelect
          A subselect followed by an optional alias.
 

Fields in net.sf.jsqlparser.statement.select declared as FromItem
private  FromItem PlainSelect.fromItem
           
private  FromItem SubJoin.left
           
private  FromItem Join.rightItem
           
 

Methods in net.sf.jsqlparser.statement.select that return FromItem
 FromItem PlainSelect.getFromItem()
          The FromItem in this query
 FromItem SubJoin.getLeft()
           
 FromItem Join.getRightItem()
          Returns the right item of the join
 

Methods in net.sf.jsqlparser.statement.select with parameters of type FromItem
 void PlainSelect.setFromItem(FromItem item)
           
 void SubJoin.setLeft(FromItem l)
           
 void Join.setRightItem(FromItem item)