Uses of Class
org.h2.expression.ExpressionColumn

Packages that use ExpressionColumn
org.h2.command.dml Contains DML (data manipulation language) and related SQL statements. 
org.h2.index Various table index implementations, as well as cursors to navigate in an index. 
org.h2.table Classes related to a table and table meta data. 
 

Uses of ExpressionColumn in org.h2.command.dml
 

Methods in org.h2.command.dml with parameters of type ExpressionColumn
 Expression SelectListColumnResolver.optimize(ExpressionColumn expressionColumn, Column column)
           
 

Uses of ExpressionColumn in org.h2.index
 

Methods in org.h2.index with parameters of type ExpressionColumn
static IndexCondition IndexCondition.get(int compareType, ExpressionColumn column, Expression expression)
          Create an index condition with the given parameters.
static IndexCondition IndexCondition.getInList(ExpressionColumn column, java.util.List<Expression> list)
          Create an index condition with the compare type IN_LIST and with the given parameters.
static IndexCondition IndexCondition.getInQuery(ExpressionColumn column, Query query)
          Create an index condition with the compare type IN_QUERY and with the given parameters.
 

Uses of ExpressionColumn in org.h2.table
 

Methods in org.h2.table with parameters of type ExpressionColumn
 Expression ColumnResolver.optimize(ExpressionColumn expressionColumn, Column column)
          Get the expression that represents this column.
 Expression SingleColumnResolver.optimize(ExpressionColumn expressionColumn, Column col)
           
 Expression TableFilter.optimize(ExpressionColumn expressionColumn, Column column)