Uses of Class
net.sf.jsqlparser.expression.operators.relational.ExpressionList
-
-
Uses of ExpressionList in net.sf.jsqlparser.expression
Subclasses of ExpressionList in net.sf.jsqlparser.expression Modifier and Type Class Description classParenthesisDeprecated, for removal: This API element is subject to removal in a future version.This class is deprecated since version 5.0.classRowConstructor<T extends Expression>Methods in net.sf.jsqlparser.expression that return ExpressionList Modifier and Type Method Description ExpressionList<?>MySQLGroupConcat. getExpressionList()ExpressionList<?>ArrayConstructor. getExpressions()ExpressionList<?>OverlapsCondition. getLeft()ExpressionList<?>Function. getParameters()The list of parameters of the function (if any, else null) If the parameter is "*", allColumns is set to trueExpressionList<?>AnalyticExpression. getPartitionExpressionList()ExpressionListFilterOverImpl. getPartitionExpressionList()ExpressionListPartitionByClause. getPartitionExpressionList()ExpressionListWindowDefinition. getPartitionExpressionList()ExpressionList<?>OverlapsCondition. getRight()Methods in net.sf.jsqlparser.expression with parameters of type ExpressionList Modifier and Type Method Description voidMySQLGroupConcat. setExpressionList(ExpressionList expressionList)voidArrayConstructor. setExpressions(ExpressionList<?> expressions)voidFunction. setParameters(ExpressionList<?> list)voidAnalyticExpression. setPartitionExpressionList(ExpressionList<?> partitionExpressionList)voidAnalyticExpression. setPartitionExpressionList(ExpressionList<?> partitionExpressionList, boolean brackets)voidFilterOverImpl. setPartitionExpressionList(ExpressionList partitionExpressionList)voidFilterOverImpl. setPartitionExpressionList(ExpressionList partitionExpressionList, boolean brackets)voidPartitionByClause. setPartitionExpressionList(ExpressionList partitionExpressionList)voidPartitionByClause. setPartitionExpressionList(ExpressionList partitionExpressionList, boolean brackets)voidWindowDefinition. setPartitionExpressionList(ExpressionList partitionExpressionList)voidWindowDefinition. setPartitionExpressionList(ExpressionList partitionExpressionList, boolean brackets)default voidExpressionVisitor. visit(ExpressionList<? extends Expression> expressionList)<S> TExpressionVisitor. visit(ExpressionList<? extends Expression> expressionList, S context)<S> TExpressionVisitorAdapter. visit(ExpressionList<? extends Expression> expressionList, S context)MySQLGroupConcatMySQLGroupConcat. withExpressionList(ExpressionList expressionList)FunctionFunction. withParameters(ExpressionList<?> parameters)PartitionByClausePartitionByClause. withPartitionExpressionList(ExpressionList partitionExpressionList)Constructors in net.sf.jsqlparser.expression with parameters of type ExpressionList Constructor Description ArrayConstructor(ExpressionList<?> expressions, boolean arrayKeyword)OverlapsCondition(ExpressionList<?> left, ExpressionList<?> right)RowConstructor(String name, ExpressionList<T> expressionList) -
Uses of ExpressionList in net.sf.jsqlparser.expression.operators.relational
Subclasses of ExpressionList in net.sf.jsqlparser.expression.operators.relational Modifier and Type Class Description classNamedExpressionList<T extends Expression>A list of named expressions, as in as in select substr('xyzzy' from 2 for 3)classParenthesedExpressionList<T extends Expression>Methods in net.sf.jsqlparser.expression.operators.relational that return ExpressionList Modifier and Type Method Description ExpressionListExpressionList. addExpression(T expression)ExpressionList<?>ExpressionList. addExpressions(Collection<T> expressions)ExpressionListExpressionList. addExpressions(T... expressions)ExpressionList<Column>FullTextSearch. getMatchColumns()ExpressionList<?>ExpressionList. withExpressions(Collection<T> expressions)ExpressionListExpressionList. withExpressions(T... expressions)Methods in net.sf.jsqlparser.expression.operators.relational with parameters of type ExpressionList Modifier and Type Method Description static ParenthesedExpressionList<?>ParenthesedExpressionList. from(ExpressionList<?> expressions)voidFullTextSearch. setMatchColumns(ExpressionList<Column> columns)FullTextSearchFullTextSearch. withMatchColumns(ExpressionList<Column> matchColumns)Constructors in net.sf.jsqlparser.expression.operators.relational with parameters of type ExpressionList Constructor Description ParenthesedExpressionList(ExpressionList<T> expressions) -
Uses of ExpressionList in net.sf.jsqlparser.statement
Methods in net.sf.jsqlparser.statement with parameters of type ExpressionList Modifier and Type Method Description voidSetStatement. add(Object name, ExpressionList<?> value, boolean useEqual)voidSetStatement. setExpressions(int idx, ExpressionList<?> expressions)voidSetStatement. setExpressions(ExpressionList<?> expressions)Constructors in net.sf.jsqlparser.statement with parameters of type ExpressionList Constructor Description SetStatement(Object name, ExpressionList<?> value) -
Uses of ExpressionList in net.sf.jsqlparser.statement.create.view
Methods in net.sf.jsqlparser.statement.create.view that return ExpressionList Modifier and Type Method Description ExpressionList<Column>CreateView. getColumnNames()Methods in net.sf.jsqlparser.statement.create.view with parameters of type ExpressionList Modifier and Type Method Description voidCreateView. setColumnNames(ExpressionList<Column> columnNames)CreateViewCreateView. withColumnNames(ExpressionList<Column> columnNames) -
Uses of ExpressionList in net.sf.jsqlparser.statement.execute
Methods in net.sf.jsqlparser.statement.execute that return ExpressionList Modifier and Type Method Description ExpressionListExecute. getExprList()Methods in net.sf.jsqlparser.statement.execute with parameters of type ExpressionList Modifier and Type Method Description voidExecute. setExprList(ExpressionList exprList)ExecuteExecute. withExprList(ExpressionList exprList) -
Uses of ExpressionList in net.sf.jsqlparser.statement.insert
Methods in net.sf.jsqlparser.statement.insert that return ExpressionList Modifier and Type Method Description ExpressionList<Column>Insert. getColumns()Methods in net.sf.jsqlparser.statement.insert with parameters of type ExpressionList Modifier and Type Method Description voidInsert. setColumns(ExpressionList<Column> list)InsertInsert. withColumns(ExpressionList<Column> columns) -
Uses of ExpressionList in net.sf.jsqlparser.statement.merge
Methods in net.sf.jsqlparser.statement.merge that return ExpressionList Modifier and Type Method Description ExpressionList<Column>MergeInsert. getColumns()ExpressionList<Expression>MergeInsert. getValues()Methods in net.sf.jsqlparser.statement.merge with parameters of type ExpressionList Modifier and Type Method Description voidMergeInsert. setColumns(ExpressionList<Column> columns)voidMergeInsert. setValues(ExpressionList<Expression> values)MergeInsertMergeInsert. withColumns(ExpressionList<Column> columns)MergeInsertMergeInsert. withValues(ExpressionList<Expression> values) -
Uses of ExpressionList in net.sf.jsqlparser.statement.select
Fields in net.sf.jsqlparser.statement.select declared as ExpressionList Modifier and Type Field Description protected ExpressionList<Column>AllColumns. exceptColumnsMethods in net.sf.jsqlparser.statement.select that return ExpressionList Modifier and Type Method Description ExpressionList<Column>AllColumns. addExceptColumn(Column column)ExpressionList<?>Limit. getByExpressions()ExpressionList<Column>AllColumns. getExceptColumns()ExpressionList<?>Values. getExpressions()ExpressionList<Column>Pivot. getForColumns()ExpressionListGroupByElement. getGroupByExpressionList()ExpressionListGroupByElement. getGroupByExpressions()Deprecated.Methods in net.sf.jsqlparser.statement.select that return types with arguments of type ExpressionList Modifier and Type Method Description List<ExpressionList>GroupByElement. getGroupingSets()List<SelectItem<ExpressionList<?>>>Pivot. getMultiInItems()Method parameters in net.sf.jsqlparser.statement.select with type arguments of type ExpressionList Modifier and Type Method Description PivotPivot. addMultiInItems(Collection<? extends SelectItem<ExpressionList<?>>> multiInItems)PivotXmlPivotXml. addMultiInItems(Collection<? extends SelectItem<ExpressionList<?>>> multiInItems)voidGroupByElement. setGroupingSets(List<ExpressionList> groupingSets)voidPivot. setMultiInItems(List<SelectItem<ExpressionList<?>>> multiInItems)PivotPivot. withMultiInItems(List<SelectItem<ExpressionList<?>>> multiInItems)PivotXmlPivotXml. withMultiInItems(List<SelectItem<ExpressionList<?>>> multiInItems)Constructors in net.sf.jsqlparser.statement.select with parameters of type ExpressionList Constructor Description AllColumns(ExpressionList<Column> exceptColumns, List<SelectItem<Column>> replaceExpressions)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, String exceptKeyword)Values(ExpressionList<Expression> expressions)Values(ExpressionList<Expression> expressions, Alias alias) -
Uses of ExpressionList in net.sf.jsqlparser.statement.update
Fields in net.sf.jsqlparser.statement.update declared as ExpressionList Modifier and Type Field Description protected ExpressionList<Column>UpdateSet. columnsprotected ExpressionList<Expression>UpdateSet. valuesMethods in net.sf.jsqlparser.statement.update that return ExpressionList Modifier and Type Method Description ExpressionList<Column>UpdateSet. getColumns()ExpressionList<?>UpdateSet. getValues()Methods in net.sf.jsqlparser.statement.update with parameters of type ExpressionList Modifier and Type Method Description voidUpdateSet. add(ExpressionList<?> expressionList)voidUpdateSet. setColumns(ExpressionList<Column> columns)voidUpdateSet. setValues(ExpressionList values) -
Uses of ExpressionList in net.sf.jsqlparser.statement.upsert
Methods in net.sf.jsqlparser.statement.upsert that return ExpressionList Modifier and Type Method Description ExpressionList<Column>Upsert. getColumns()ExpressionListUpsert. getExpressions()ExpressionList<?>Upsert. getSetExpressions()Deprecated.Methods in net.sf.jsqlparser.statement.upsert with parameters of type ExpressionList Modifier and Type Method Description voidUpsert. setColumns(ExpressionList<Column> list)voidUpsert. setExpressions(ExpressionList list)UpsertUpsert. withColumns(ExpressionList<Column> columns)UpsertUpsert. withExpressions(ExpressionList expressions) -
Uses of ExpressionList in net.sf.jsqlparser.util
Methods in net.sf.jsqlparser.util with parameters of type ExpressionList Modifier and Type Method Description <S> VoidTablesNamesFinder. visit(ExpressionList<?> expressionList, S context) -
Uses of ExpressionList in net.sf.jsqlparser.util.deparser
Methods in net.sf.jsqlparser.util.deparser with parameters of type ExpressionList Modifier and Type Method Description voidExpressionListDeParser. deParse(ExpressionList<?> expressionList)voidExpressionDeParser. visit(ExpressionList<?> expressionList)<S> StringBuilderExpressionDeParser. visit(ExpressionList<? extends Expression> expressionList, S context) -
Uses of ExpressionList in net.sf.jsqlparser.util.validation.validator
Methods in net.sf.jsqlparser.util.validation.validator with parameters of type ExpressionList Modifier and Type Method Description <S> VoidExpressionValidator. visit(ExpressionList<?> expressionList, S context)
-