Uses of Class
org.eclipse.datatools.modelbase.sql.query.QueryCombinedOperator

Packages that use QueryCombinedOperator
org.eclipse.datatools.modelbase.sql.query   
org.eclipse.datatools.sqltools.sqlbuilder.views.fullselect   
 

Uses of QueryCombinedOperator in org.eclipse.datatools.modelbase.sql.query
 

Fields in org.eclipse.datatools.modelbase.sql.query declared as QueryCombinedOperator
static QueryCombinedOperator QueryCombinedOperator.EXCEPT_ALL_LITERAL
          The 'EXCEPT ALL' literal object.
static QueryCombinedOperator QueryCombinedOperator.EXCEPT_LITERAL
          The 'EXCEPT' literal object.
static QueryCombinedOperator QueryCombinedOperator.INTERSECT_ALL_LITERAL
          The 'INTERSECT ALL' literal object.
static QueryCombinedOperator QueryCombinedOperator.INTERSECT_LITERAL
          The 'INTERSECT' literal object.
static QueryCombinedOperator QueryCombinedOperator.UNION_ALL_LITERAL
          The 'UNION ALL' literal object.
static QueryCombinedOperator QueryCombinedOperator.UNION_LITERAL
          The 'UNION' literal object.
 

Methods in org.eclipse.datatools.modelbase.sql.query that return QueryCombinedOperator
static QueryCombinedOperator QueryCombinedOperator.get(int value)
          Returns the 'Query Combined Operator' literal with the specified integer value.
static QueryCombinedOperator QueryCombinedOperator.get(java.lang.String literal)
          Returns the 'Query Combined Operator' literal with the specified literal value.
static QueryCombinedOperator QueryCombinedOperator.getByName(java.lang.String name)
          Returns the 'Query Combined Operator' literal with the specified name.
 QueryCombinedOperator QueryCombined.getCombinedOperator()
          Returns the value of the 'Combined Operator' attribute.
 

Methods in org.eclipse.datatools.modelbase.sql.query with parameters of type QueryCombinedOperator
 void QueryCombined.setCombinedOperator(QueryCombinedOperator value)
          Sets the value of the 'Combined Operator' attribute.
 

Uses of QueryCombinedOperator in org.eclipse.datatools.sqltools.sqlbuilder.views.fullselect
 

Constructors in org.eclipse.datatools.sqltools.sqlbuilder.views.fullselect with parameters of type QueryCombinedOperator
FullSelectTableElement(QueryExpressionBody query, QueryCombinedOperator opr, QueryCombined parentNode)