Uses of Class
net.sf.jsqlparser.schema.Column
Packages that use Column
Package
Description
-
Uses of Column in net.sf.jsqlparser.expression
Fields in net.sf.jsqlparser.expression declared as ColumnModifier and TypeFieldDescriptionprivate Column
Function.attributeColumn
private final Column
ConnectByRootOperator.column
Methods in net.sf.jsqlparser.expression that return ColumnModifier and TypeMethodDescriptionFunction.getAttributeColumn()
ConnectByRootOperator.getColumn()
Methods in net.sf.jsqlparser.expression with parameters of type ColumnModifier and TypeMethodDescriptionvoid
Function.setAttribute
(Column attributeColumn) void
void
Function.withAttribute
(Column attributeColumn) Constructors in net.sf.jsqlparser.expression with parameters of type Column -
Uses of Column in net.sf.jsqlparser.expression.operators.relational
Fields in net.sf.jsqlparser.expression.operators.relational with type parameters of type ColumnMethods in net.sf.jsqlparser.expression.operators.relational that return types with arguments of type ColumnMethods in net.sf.jsqlparser.expression.operators.relational with parameters of type ColumnMethod parameters in net.sf.jsqlparser.expression.operators.relational with type arguments of type ColumnModifier and TypeMethodDescriptionFullTextSearch.addMatchColumns
(Collection<? extends Column> matchColumns) void
FullTextSearch.setMatchColumns
(ExpressionList<Column> columns) FullTextSearch.withMatchColumns
(ExpressionList<Column> matchColumns) -
Uses of Column in net.sf.jsqlparser.parser
Methods in net.sf.jsqlparser.parser that return ColumnMethods in net.sf.jsqlparser.parser that return types with arguments of type ColumnModifier and TypeMethodDescriptionfinal ExpressionList
<Column> CCJSqlParser.ColumnList()
final ExpressionList
<Column> CCJSqlParser.ColumnWithCommentList()
final ParenthesedExpressionList
<Column> CCJSqlParser.ParenthesedColumnList()
final ExpressionList
<Column> CCJSqlParser.PivotForColumns()
-
Uses of Column in net.sf.jsqlparser.schema
Methods in net.sf.jsqlparser.schema that return ColumnModifier and TypeMethodDescriptionColumn.setArrayConstructor
(ArrayConstructor arrayConstructor) Column.withColumnName
(String columnName) Column.withCommentText
(String commentText) -
Uses of Column in net.sf.jsqlparser.statement.comment
Fields in net.sf.jsqlparser.statement.comment declared as ColumnMethods in net.sf.jsqlparser.statement.comment that return ColumnMethods in net.sf.jsqlparser.statement.comment with parameters of type Column -
Uses of Column in net.sf.jsqlparser.statement.create.view
Fields in net.sf.jsqlparser.statement.create.view with type parameters of type ColumnMethods in net.sf.jsqlparser.statement.create.view that return types with arguments of type ColumnMethod parameters in net.sf.jsqlparser.statement.create.view with type arguments of type ColumnModifier and TypeMethodDescriptionvoid
CreateView.setColumnNames
(ExpressionList<Column> columnNames) CreateView.withColumnNames
(ExpressionList<Column> columnNames) -
Uses of Column in net.sf.jsqlparser.statement.insert
Fields in net.sf.jsqlparser.statement.insert with type parameters of type ColumnMethods in net.sf.jsqlparser.statement.insert that return types with arguments of type ColumnMethods in net.sf.jsqlparser.statement.insert with parameters of type ColumnModifier and TypeMethodDescriptionInsert.addColumns
(Column... columns) InsertConflictAction.addUpdateSet
(Column column, Expression expression) Method parameters in net.sf.jsqlparser.statement.insert with type arguments of type ColumnModifier and TypeMethodDescriptionInsert.addColumns
(Collection<Column> columns) void
Insert.setColumns
(ExpressionList<Column> list) Insert.withColumns
(ExpressionList<Column> columns) -
Uses of Column in net.sf.jsqlparser.statement.merge
Fields in net.sf.jsqlparser.statement.merge with type parameters of type ColumnMethods in net.sf.jsqlparser.statement.merge that return types with arguments of type ColumnMethods in net.sf.jsqlparser.statement.merge with parameters of type ColumnMethod parameters in net.sf.jsqlparser.statement.merge with type arguments of type ColumnModifier and TypeMethodDescriptionMergeInsert.addColumns
(Collection<? extends Column> columns) void
MergeInsert.setColumns
(ExpressionList<Column> columns) MergeInsert.withColumns
(ExpressionList<Column> columns) -
Uses of Column in net.sf.jsqlparser.statement.select
Fields in net.sf.jsqlparser.statement.select with type parameters of type ColumnModifier and TypeFieldDescriptionprotected ExpressionList
<Column> AllColumns.exceptColumns
private ExpressionList
<Column> Pivot.forColumns
private ExpressionList
<Column> UnPivot.unpivotClause
private ExpressionList
<Column> UnPivot.unpivotForClause
private final LinkedList
<Column> Join.usingColumns
Methods in net.sf.jsqlparser.statement.select that return types with arguments of type ColumnModifier and TypeMethodDescriptionAllColumns.addExceptColumn
(Column column) AllColumns.getExceptColumns()
Pivot.getForColumns()
UnPivot.getUnPivotClause()
UnPivot.getUnPivotForClause()
Join.getUsingColumns()
Returns the "USING" list ofColumn
s (if any)Methods in net.sf.jsqlparser.statement.select with parameters of type ColumnModifier and TypeMethodDescriptionAllColumns.addExceptColumn
(Column column) Pivot.addForColumns
(Column... forColumns) PivotXml.addForColumns
(Column... forColumns) Join.addUsingColumns
(Column... usingColumns) Method parameters in net.sf.jsqlparser.statement.select with type arguments of type ColumnModifier and TypeMethodDescriptionPivot.addForColumns
(Collection<? extends Column> forColumns) PivotXml.addForColumns
(Collection<? extends Column> forColumns) Join.addUsingColumns
(Collection<? extends Column> usingColumns) AllColumns.setExceptColumns
(ExpressionList<Column> exceptColumns) void
Pivot.setForColumns
(ExpressionList<Column> forColumns) void
UnPivot.setUnPivotClause
(ExpressionList<Column> unpivotClause) void
UnPivot.setUnPivotForClause
(ExpressionList<Column> forColumns) void
Join.setUsingColumns
(List<Column> list) Pivot.withForColumns
(ExpressionList<Column> forColumns) PivotXml.withForColumns
(ExpressionList<Column> forColumns) Join.withUsingColumns
(List<Column> list) Constructor parameters in net.sf.jsqlparser.statement.select with type arguments of type ColumnModifierConstructorDescriptionAllColumns
(ExpressionList<Column> exceptColumns, List<SelectItem<?>> replaceExpressions) AllTableColumns
(Table table, ExpressionList<Column> exceptColumns, List<SelectItem<?>> replaceExpressions) -
Uses of Column in net.sf.jsqlparser.statement.update
Fields in net.sf.jsqlparser.statement.update with type parameters of type ColumnMethods in net.sf.jsqlparser.statement.update that return ColumnMethods in net.sf.jsqlparser.statement.update that return types with arguments of type ColumnMethods in net.sf.jsqlparser.statement.update with parameters of type ColumnModifier and TypeMethodDescriptionvoid
Add another column to the existing column list.void
UpdateSet.add
(Column column, Expression value) Update.addColumns
(Column... columns) Update.addUpdateSet
(Column column, Expression expression) Method parameters in net.sf.jsqlparser.statement.update with type arguments of type ColumnModifier and TypeMethodDescriptionUpdate.addColumns
(Collection<? extends Column> columns) void
Update.setColumns
(List<Column> list) Deprecated.void
UpdateSet.setColumns
(ExpressionList<Column> columns) Update.withColumns
(List<Column> columns) Constructors in net.sf.jsqlparser.statement.update with parameters of type Column -
Uses of Column in net.sf.jsqlparser.statement.upsert
Fields in net.sf.jsqlparser.statement.upsert with type parameters of type ColumnMethods in net.sf.jsqlparser.statement.upsert that return types with arguments of type ColumnMethods in net.sf.jsqlparser.statement.upsert with parameters of type ColumnMethod parameters in net.sf.jsqlparser.statement.upsert with type arguments of type ColumnModifier and TypeMethodDescriptionUpsert.addColumns
(Collection<? extends Column> columns) void
Upsert.setColumns
(ExpressionList<Column> list) Upsert.withColumns
(ExpressionList<Column> columns) -
Uses of Column in net.sf.jsqlparser.util
Methods in net.sf.jsqlparser.util with parameters of type Column -
Uses of Column in net.sf.jsqlparser.util.deparser
Methods in net.sf.jsqlparser.util.deparser with parameters of type Column -
Uses of Column in net.sf.jsqlparser.util.validation.validator
Methods in net.sf.jsqlparser.util.validation.validator with parameters of type Column