Uses of Class
com.metamatrix.query.sql.symbol.SelectSymbol

Packages that use SelectSymbol
com.metamatrix.query.parser   
com.metamatrix.query.sql.lang   
com.metamatrix.query.sql.symbol   
 

Uses of SelectSymbol in com.metamatrix.query.parser
 

Methods in com.metamatrix.query.parser that return SelectSymbol
 SelectSymbol SQLParser.selectSymbol(ParseInfo info)
           
 

Uses of SelectSymbol in com.metamatrix.query.sql.lang
 

Methods in com.metamatrix.query.sql.lang that return SelectSymbol
 SelectSymbol Select.getSymbol(int index)
          Returns the select symbol at the specified index.
 

Methods in com.metamatrix.query.sql.lang with parameters of type SelectSymbol
 void Select.addSymbol(SelectSymbol symbol)
          Adds a new symbol to the list of symbols.
 boolean Select.containsSymbol(SelectSymbol symbol)
          Checks if a symbol is in the Select.
 

Uses of SelectSymbol in com.metamatrix.query.sql.symbol
 

Subclasses of SelectSymbol in com.metamatrix.query.sql.symbol
 class AggregateSymbol
          An aggregate symbol represents an aggregate function in the SELECT or HAVING clauses.
 class AliasSymbol
          An AliasSymbol wraps a SingleElementSymbol and changes it's name.
 class AllInGroupSymbol
          This is a subclass of Symbol representing .*, which contains all of the elements from a single group in the query.
 class AllSymbol
          This is a subclass of Symbol representing *, which contains all of the elements from all groups in the query.
 class ElementSymbol
          This is a subclass of Symbol representing a single element.
 class ExpressionSymbol
          This is a subclass of Symbol representing an expression in the SELECT clause.
 class MultipleElementSymbol
          This is a subclass of Symbol representing multiple output columns.
 class SingleElementSymbol
          This is a subclass of Symbol representing a single output column.
 



Copyright © 2009. All Rights Reserved.