public interface ColumnResolver
| Modifier and Type | Method and Description |
|---|---|
Column |
findColumn(java.lang.String name)
Get the column with the specified name.
|
java.lang.String |
getColumnName(Column column)
Get the name of the specified column.
|
Column[] |
getColumns()
Get the column list.
|
Column |
getRowIdColumn()
Get the row id pseudo column, if there is one.
|
java.lang.String |
getSchemaName()
Get the schema name or null.
|
Select |
getSelect()
Get the select statement.
|
Column[] |
getSystemColumns()
Get the list of system columns, if any.
|
java.lang.String |
getTableAlias()
Get the table alias.
|
TableFilter |
getTableFilter()
Get the table filter.
|
Value |
getValue(Column column)
Get the value for the given column.
|
boolean |
hasDerivedColumnList()
Returns whether this column resolver has a derived column list.
|
Expression |
optimize(ExpressionColumn expressionColumn,
Column column)
Get the expression that represents this column.
|
java.lang.String getTableAlias()
Column[] getColumns()
Column findColumn(java.lang.String name)
name - the column name, must be a derived name if this column
resolver has a derived column listnulljava.lang.String getColumnName(Column column)
column - columnboolean hasDerivedColumnList()
true if this column resolver has a derived column list,
false otherwiseColumn[] getSystemColumns()
Column getRowIdColumn()
java.lang.String getSchemaName()
Value getValue(Column column)
column - the columnTableFilter getTableFilter()
Select getSelect()
Expression optimize(ExpressionColumn expressionColumn, Column column)
expressionColumn - the expression columncolumn - the column