Uses of Class
net.sf.jsqlparser.schema.Column
-
-
Uses of Column in net.sf.jsqlparser.expression
Fields in net.sf.jsqlparser.expression declared as Column Modifier and Type Field Description private Column
Function. attributeColumn
private Column
ConnectByRootOperator. column
Methods in net.sf.jsqlparser.expression that return Column Modifier and Type Method Description Column
Function. getAttributeColumn()
Column
ConnectByRootOperator. getColumn()
Methods in net.sf.jsqlparser.expression with parameters of type Column Modifier and Type Method Description void
Function. setAttribute(Column attributeColumn)
void
ExpressionVisitor. visit(Column tableColumn)
void
ExpressionVisitorAdapter. visit(Column column)
Function
Function. withAttribute(Column attributeColumn)
Constructors in net.sf.jsqlparser.expression with parameters of type Column Constructor Description ConnectByRootOperator(Column column)
-
Uses of Column in net.sf.jsqlparser.expression.operators.relational
Fields in net.sf.jsqlparser.expression.operators.relational with type parameters of type Column Modifier and Type Field Description private ExpressionList<Column>
FullTextSearch. _matchColumns
Methods in net.sf.jsqlparser.expression.operators.relational that return types with arguments of type Column Modifier and Type Method Description ExpressionList<Column>
FullTextSearch. getMatchColumns()
Methods in net.sf.jsqlparser.expression.operators.relational with parameters of type Column Modifier and Type Method Description FullTextSearch
FullTextSearch. addMatchColumns(Column... matchColumns)
Method parameters in net.sf.jsqlparser.expression.operators.relational with type arguments of type Column Modifier and Type Method Description FullTextSearch
FullTextSearch. addMatchColumns(java.util.Collection<? extends Column> matchColumns)
void
FullTextSearch. setMatchColumns(ExpressionList<Column> columns)
FullTextSearch
FullTextSearch. withMatchColumns(ExpressionList<Column> matchColumns)
-
Uses of Column in net.sf.jsqlparser.parser
Methods in net.sf.jsqlparser.parser that return Column Modifier and Type Method Description Column
CCJSqlParser. Column()
Methods in net.sf.jsqlparser.parser that return types with arguments of type Column Modifier and Type Method Description ExpressionList<Column>
CCJSqlParser. ColumnList()
ExpressionList<Column>
CCJSqlParser. ColumnWithCommentList()
ParenthesedExpressionList<Column>
CCJSqlParser. ParenthesedColumnList()
ExpressionList<Column>
CCJSqlParser. PivotForColumns()
-
Uses of Column in net.sf.jsqlparser.schema
Methods in net.sf.jsqlparser.schema that return Column Modifier and Type Method Description Column
Column. setArrayConstructor(ArrayConstructor arrayConstructor)
Column
Column. withColumnName(java.lang.String columnName)
Column
Column. withCommentText(java.lang.String commentText)
Column
Column. withTable(Table table)
-
Uses of Column in net.sf.jsqlparser.statement.comment
Fields in net.sf.jsqlparser.statement.comment declared as Column Modifier and Type Field Description private Column
Comment. column
Methods in net.sf.jsqlparser.statement.comment that return Column Modifier and Type Method Description Column
Comment. getColumn()
Methods in net.sf.jsqlparser.statement.comment with parameters of type Column Modifier and Type Method Description void
Comment. setColumn(Column column)
Comment
Comment. withColumn(Column column)
-
Uses of Column in net.sf.jsqlparser.statement.create.view
Fields in net.sf.jsqlparser.statement.create.view with type parameters of type Column Modifier and Type Field Description private ExpressionList<Column>
CreateView. columnNames
Methods in net.sf.jsqlparser.statement.create.view that return types with arguments of type Column Modifier and Type Method Description ExpressionList<Column>
CreateView. getColumnNames()
Method parameters in net.sf.jsqlparser.statement.create.view with type arguments of type Column Modifier and Type Method Description void
CreateView. setColumnNames(ExpressionList<Column> columnNames)
CreateView
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 Column Modifier and Type Field Description private ExpressionList<Column>
Insert. columns
Methods in net.sf.jsqlparser.statement.insert that return types with arguments of type Column Modifier and Type Method Description ExpressionList<Column>
Insert. getColumns()
Methods in net.sf.jsqlparser.statement.insert with parameters of type Column Modifier and Type Method Description Insert
Insert. addColumns(Column... columns)
InsertConflictAction
InsertConflictAction. addUpdateSet(Column column, Expression expression)
Method parameters in net.sf.jsqlparser.statement.insert with type arguments of type Column Modifier and Type Method Description Insert
Insert. addColumns(java.util.Collection<Column> columns)
void
Insert. setColumns(ExpressionList<Column> list)
Insert
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 Column Modifier and Type Field Description private ExpressionList<Column>
MergeInsert. columns
Methods in net.sf.jsqlparser.statement.merge that return types with arguments of type Column Modifier and Type Method Description ExpressionList<Column>
MergeInsert. getColumns()
Methods in net.sf.jsqlparser.statement.merge with parameters of type Column Modifier and Type Method Description MergeInsert
MergeInsert. addColumns(Column... columns)
Method parameters in net.sf.jsqlparser.statement.merge with type arguments of type Column Modifier and Type Method Description MergeInsert
MergeInsert. addColumns(java.util.Collection<? extends Column> columns)
void
MergeInsert. setColumns(ExpressionList<Column> columns)
MergeInsert
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 Column Modifier and Type Field Description protected ExpressionList<Column>
AllColumns. exceptColumns
private ExpressionList<Column>
Pivot. forColumns
private ExpressionList<Column>
UnPivot. unpivotClause
private ExpressionList<Column>
UnPivot. unpivotForClause
private java.util.LinkedList<Column>
Join. usingColumns
Methods in net.sf.jsqlparser.statement.select that return types with arguments of type Column Modifier and Type Method Description ExpressionList<Column>
AllColumns. addExceptColumn(Column column)
ExpressionList<Column>
AllColumns. getExceptColumns()
ExpressionList<Column>
Pivot. getForColumns()
java.util.List<Column>
UnPivot. getUnPivotClause()
java.util.List<Column>
UnPivot. getUnPivotForClause()
java.util.List<Column>
Join. getUsingColumns()
Returns the "USING" list ofColumn
s (if any)Methods in net.sf.jsqlparser.statement.select with parameters of type Column Modifier and Type Method Description ExpressionList<Column>
AllColumns. addExceptColumn(Column column)
Pivot
Pivot. addForColumns(Column... forColumns)
PivotXml
PivotXml. addForColumns(Column... forColumns)
Join
Join. addUsingColumns(Column... usingColumns)
Method parameters in net.sf.jsqlparser.statement.select with type arguments of type Column Modifier and Type Method Description Pivot
Pivot. addForColumns(java.util.Collection<? extends Column> forColumns)
PivotXml
PivotXml. addForColumns(java.util.Collection<? extends Column> forColumns)
Join
Join. addUsingColumns(java.util.Collection<? extends Column> usingColumns)
AllColumns
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(java.util.List<Column> list)
Pivot
Pivot. withForColumns(ExpressionList<Column> forColumns)
PivotXml
PivotXml. withForColumns(ExpressionList<Column> forColumns)
Join
Join. withUsingColumns(java.util.List<Column> list)
Constructor parameters in net.sf.jsqlparser.statement.select with type arguments of type Column Constructor Description AllColumns(ExpressionList<Column> exceptColumns, java.util.List<SelectItem<?>> replaceExpressions)
AllTableColumns(Table table, ExpressionList<Column> exceptColumns, java.util.List<SelectItem<?>> replaceExpressions)
-
Uses of Column in net.sf.jsqlparser.statement.update
Fields in net.sf.jsqlparser.statement.update with type parameters of type Column Modifier and Type Field Description protected ExpressionList<Column>
UpdateSet. columns
Methods in net.sf.jsqlparser.statement.update that return Column Modifier and Type Method Description Column
UpdateSet. getColumn(int index)
Methods in net.sf.jsqlparser.statement.update that return types with arguments of type Column Modifier and Type Method Description java.util.List<Column>
Update. getColumns()
Deprecated.ExpressionList<Column>
UpdateSet. getColumns()
Methods in net.sf.jsqlparser.statement.update with parameters of type Column Modifier and Type Method Description void
UpdateSet. add(Column column)
Add another column to the existing column list.void
UpdateSet. add(Column column, Expression value)
Update
Update. addColumns(Column... columns)
Update
Update. addUpdateSet(Column column, Expression expression)
Method parameters in net.sf.jsqlparser.statement.update with type arguments of type Column Modifier and Type Method Description Update
Update. addColumns(java.util.Collection<? extends Column> columns)
void
Update. setColumns(java.util.List<Column> list)
Deprecated.void
UpdateSet. setColumns(ExpressionList<Column> columns)
Update
Update. withColumns(java.util.List<Column> columns)
Constructors in net.sf.jsqlparser.statement.update with parameters of type Column Constructor Description UpdateSet(Column column)
UpdateSet(Column column, Expression value)
-
Uses of Column in net.sf.jsqlparser.statement.upsert
Fields in net.sf.jsqlparser.statement.upsert with type parameters of type Column Modifier and Type Field Description private ExpressionList<Column>
Upsert. columns
Methods in net.sf.jsqlparser.statement.upsert that return types with arguments of type Column Modifier and Type Method Description ExpressionList<Column>
Upsert. getColumns()
Methods in net.sf.jsqlparser.statement.upsert with parameters of type Column Modifier and Type Method Description Upsert
Upsert. addColumns(Column... columns)
Method parameters in net.sf.jsqlparser.statement.upsert with type arguments of type Column Modifier and Type Method Description Upsert
Upsert. addColumns(java.util.Collection<? extends Column> columns)
void
Upsert. setColumns(ExpressionList<Column> list)
Upsert
Upsert. withColumns(ExpressionList<Column> columns)
-
Uses of Column in net.sf.jsqlparser.util
Methods in net.sf.jsqlparser.util with parameters of type Column Modifier and Type Method Description void
TablesNamesFinder. visit(Column tableColumn)
-
Uses of Column in net.sf.jsqlparser.util.deparser
Methods in net.sf.jsqlparser.util.deparser with parameters of type Column Modifier and Type Method Description void
ExpressionDeParser. visit(Column tableColumn)
-
Uses of Column in net.sf.jsqlparser.util.validation.validator
Methods in net.sf.jsqlparser.util.validation.validator with parameters of type Column Modifier and Type Method Description void
ExpressionValidator. visit(Column tableColumn)
-