| Modifier and Type | Method and Description |
|---|---|
ColumnReferenceByExpression |
colExp(ValueExpression expression)
Creates column reference, which has value of some expression.
|
ColumnReferenceByName |
colName(String colName)
Creates column reference, which references column by name, without table name.
|
ColumnReferenceByName |
colName(String tableName,
String colName)
Creates column reference, which reference column by its name and by name of table, to which it belongs.
|
ColumnNameList |
colNames(Collection<String> names)
Constructs new
ColumnNameList using specified column names. |
ColumnNameList |
colNames(String... names)
Constructs new
ColumnNameList. |
ColumnReferenceByExpression colExp(ValueExpression expression)
expression - The expression for the column.ColumnReferenceByExpression.ColumnReferenceByName colName(String colName)
Creates column reference, which references column by name, without table name.
Calling this method is equivalent in calling colName(String, String) and passing null as first
argument.
colName - The name of the column.ColumnReferenceByName.ColumnReferenceByName colName(String tableName, String colName)
tableName - The name of the table. May be null.colName - The name of the column.ColumnReferenceByName.ColumnNameList colNames(String... names)
ColumnNameList.names - The column names. At least one element must be present.ColumnNameList.ColumnNameList colNames(Collection<String> names)
ColumnNameList using specified column names. A new copy of List will be allocated for the
ColumnNameList.names - The column names. Must contain at least one name.ColumnNameList.Copyright © 2010-2012. All Rights Reserved.