Uses of Class
net.sf.jsqlparser.schema.Column
-
-
Uses of Column in net.sf.jsqlparser.expression
Methods in net.sf.jsqlparser.expression that return Column Modifier and Type Method Description ColumnFunction. getAttributeColumn()ColumnConnectByRootOperator. getColumn()Methods in net.sf.jsqlparser.expression with parameters of type Column Modifier and Type Method Description voidFunction. setAttribute(Column attributeColumn)default voidExpressionVisitor. visit(Column column)<S> TExpressionVisitor. visit(Column column, S context)<S> TExpressionVisitorAdapter. visit(Column column, S context)FunctionFunction. 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
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 FullTextSearchFullTextSearch. addMatchColumns(Column... matchColumns)Method parameters in net.sf.jsqlparser.expression.operators.relational with type arguments of type Column Modifier and Type Method Description FullTextSearchFullTextSearch. addMatchColumns(Collection<? extends Column> matchColumns)voidFullTextSearch. setMatchColumns(ExpressionList<Column> columns)FullTextSearchFullTextSearch. withMatchColumns(ExpressionList<Column> matchColumns) -
Uses of Column in net.sf.jsqlparser.schema
Methods in net.sf.jsqlparser.schema that return Column Modifier and Type Method Description ColumnColumn. setArrayConstructor(ArrayConstructor arrayConstructor)ColumnColumn. withColumnName(String columnName)ColumnColumn. withCommentText(String commentText)ColumnColumn. withTable(Table table)ColumnColumn. withTableDelimiter(String delimiter) -
Uses of Column in net.sf.jsqlparser.statement.comment
Methods in net.sf.jsqlparser.statement.comment that return Column Modifier and Type Method Description ColumnComment. getColumn()Methods in net.sf.jsqlparser.statement.comment with parameters of type Column Modifier and Type Method Description voidComment. setColumn(Column column)CommentComment. withColumn(Column column) -
Uses of Column in net.sf.jsqlparser.statement.create.view
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 voidCreateView. setColumnNames(ExpressionList<Column> columnNames)CreateViewCreateView. withColumnNames(ExpressionList<Column> columnNames) -
Uses of Column in net.sf.jsqlparser.statement.insert
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 InsertInsert. addColumns(Column... columns)InsertConflictActionInsertConflictAction. addUpdateSet(Column column, Expression expression)Method parameters in net.sf.jsqlparser.statement.insert with type arguments of type Column Modifier and Type Method Description InsertInsert. addColumns(Collection<Column> columns)voidInsert. setColumns(ExpressionList<Column> list)InsertInsert. withColumns(ExpressionList<Column> columns) -
Uses of Column in net.sf.jsqlparser.statement.merge
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 MergeInsertMergeInsert. addColumns(Column... columns)Method parameters in net.sf.jsqlparser.statement.merge with type arguments of type Column Modifier and Type Method Description MergeInsertMergeInsert. addColumns(Collection<? extends Column> columns)voidMergeInsert. setColumns(ExpressionList<Column> columns)MergeInsertMergeInsert. 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. exceptColumnsprotected List<SelectItem<Column>>AllColumns. replaceExpressionsMethods 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)List<SelectItem<Column>>AllColumns. addReplaceExpression(SelectItem<Column> selectItem)ExpressionList<Column>AllColumns. getExceptColumns()ExpressionList<Column>Pivot. getForColumns()List<SelectItem<Column>>AllColumns. getReplaceExpressions()List<Column>UnPivot. getUnPivotClause()List<Column>UnPivot. getUnPivotForClause()List<Column>Join. getUsingColumns()Returns the "USING" list ofColumns (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)PivotPivot. addForColumns(Column... forColumns)PivotXmlPivotXml. addForColumns(Column... forColumns)JoinJoin. addUsingColumns(Column... usingColumns)Constructor parameters in net.sf.jsqlparser.statement.select with type arguments of type Column Constructor Description AllColumns(ExpressionList<Column> exceptColumns, List<SelectItem<Column>> replaceExpressions)AllColumns(ExpressionList<Column> exceptColumns, List<SelectItem<Column>> replaceExpressions)AllColumns(ExpressionList<Column> exceptColumns, List<SelectItem<Column>> replaceExpressions, String exceptKeyword)AllColumns(ExpressionList<Column> exceptColumns, List<SelectItem<Column>> replaceExpressions, String exceptKeyword)AllTableColumns(Table table, ExpressionList<Column> exceptColumns, List<SelectItem<Column>> replaceExpressions)AllTableColumns(Table table, ExpressionList<Column> exceptColumns, List<SelectItem<Column>> replaceExpressions)AllTableColumns(Table table, ExpressionList<Column> exceptColumns, List<SelectItem<Column>> replaceExpressions, String exceptKeyword)AllTableColumns(Table table, ExpressionList<Column> exceptColumns, List<SelectItem<Column>> replaceExpressions, String exceptKeyword) -
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. columnsMethods in net.sf.jsqlparser.statement.update that return Column Modifier and Type Method Description ColumnUpdateSet. getColumn(int index)Methods in net.sf.jsqlparser.statement.update that return types with arguments of type Column Modifier and Type Method Description 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 voidUpdateSet. add(Column column)Add another column to the existing column list.voidUpdateSet. add(Column column, Expression value)UpdateUpdate. addColumns(Column... columns)UpdateUpdate. addUpdateSet(Column column, Expression expression)Method parameters in net.sf.jsqlparser.statement.update with type arguments of type Column Modifier and Type Method Description UpdateUpdate. addColumns(Collection<? extends Column> columns)voidUpdate. setColumns(List<Column> list)Deprecated.voidUpdateSet. setColumns(ExpressionList<Column> columns)UpdateUpdate. withColumns(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
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 UpsertUpsert. addColumns(Column... columns)Method parameters in net.sf.jsqlparser.statement.upsert with type arguments of type Column Modifier and Type Method Description UpsertUpsert. addColumns(Collection<? extends Column> columns)voidUpsert. setColumns(ExpressionList<Column> list)UpsertUpsert. 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 <S> VoidTablesNamesFinder. visit(Column tableColumn, S context) -
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 voidExpressionDeParser. visit(Column tableColumn)<S> StringBuilderExpressionDeParser. visit(Column tableColumn, S context) -
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 voidExpressionValidator. visit(Column tableColumn)<S> VoidExpressionValidator. visit(Column tableColumn, S context)
-