Uses of Class
net.sf.jsqlparser.statement.select.SelectItem
-
-
Uses of SelectItem in net.sf.jsqlparser.expression
Methods in net.sf.jsqlparser.expression that return types with arguments of type SelectItem Modifier and Type Method Description List<SelectItem<?>>StructType. getArguments()Methods in net.sf.jsqlparser.expression with parameters of type SelectItem Modifier and Type Method Description <S> TExpressionVisitorAdapter. visit(SelectItem<? extends Expression> selectItem, S context)Method parameters in net.sf.jsqlparser.expression with type arguments of type SelectItem Modifier and Type Method Description StructTypeStructType. setArguments(List<SelectItem<?>> arguments)Constructor parameters in net.sf.jsqlparser.expression with type arguments of type SelectItem Constructor Description StructType(StructType.Dialect dialect, List<SelectItem<?>> arguments) -
Uses of SelectItem in net.sf.jsqlparser.statement
Methods in net.sf.jsqlparser.statement that return types with arguments of type SelectItem Modifier and Type Method Description List<SelectItem<?>>OutputClause. getSelectItemList()Method parameters in net.sf.jsqlparser.statement with type arguments of type SelectItem Modifier and Type Method Description voidOutputClause. setSelectItemList(List<SelectItem<?>> selectItemList)Constructor parameters in net.sf.jsqlparser.statement with type arguments of type SelectItem Constructor Description OutputClause(List<SelectItem<?>> selectItemList, UserVariable tableVariable, Table outputTable, List<String> columnList)ReturningClause(String keyword, List<SelectItem<?>> selectItems)ReturningClause(String keyword, List<SelectItem<?>> selectItems, List<Object> dataItems)ReturningClause(ReturningClause.Keyword keyword, List<SelectItem<?>> selectItems)ReturningClause(ReturningClause.Keyword keyword, List<SelectItem<?>> selectItems, List<Object> dataItems) -
Uses of SelectItem in net.sf.jsqlparser.statement.piped
Methods in net.sf.jsqlparser.statement.piped that return types with arguments of type SelectItem Modifier and Type Method Description ArrayList<SelectItem<?>>AggregatePipeOperator. getGroupItems()List<SelectItem<?>>PivotPipeOperator. getPivotColumns()List<SelectItem<?>>UnPivotPipeOperator. getPivotColumns()ArrayList<SelectItem<?>>AggregatePipeOperator. getSelectItems()ArrayList<SelectItem<?>>SelectPipeOperator. getSelectItems()Methods in net.sf.jsqlparser.statement.piped with parameters of type SelectItem Modifier and Type Method Description AggregatePipeOperatorAggregatePipeOperator. add(SelectItem<?> selectItem, String orderSuffix)SelectPipeOperatorSelectPipeOperator. add(SelectItem<?> selectItem)AggregatePipeOperatorAggregatePipeOperator. addGroupItem(SelectItem<?> selectItem, String orderSuffix)AggregatePipeOperatorAggregatePipeOperator. with(SelectItem<?> selectItem, String orderSuffix)SelectPipeOperatorSelectPipeOperator. with(SelectItem<?> selectItem)AggregatePipeOperatorAggregatePipeOperator. withGroupItem(SelectItem<?> selectItem, String orderSuffix)Method parameters in net.sf.jsqlparser.statement.piped with type arguments of type SelectItem Modifier and Type Method Description PivotPipeOperatorPivotPipeOperator. setPivotColumns(List<SelectItem<?>> pivotColumns)UnPivotPipeOperatorUnPivotPipeOperator. setPivotColumns(List<SelectItem<?>> pivotColumns)Constructors in net.sf.jsqlparser.statement.piped with parameters of type SelectItem Constructor Description AggregatePipeOperator(SelectItem<?> selectItem, String orderSuffix)ExtendPipeOperator(SelectItem<?> selectItem)RenamePipeOperator(SelectItem<?> selectItem)SelectPipeOperator(String operatorName, SelectItem<?> selectItem, String modifier)WindowPipeOperator(SelectItem<?> selectItem)Constructor parameters in net.sf.jsqlparser.statement.piped with type arguments of type SelectItem Constructor Description PivotPipeOperator(Function aggregateExpression, Column inputColumn, List<SelectItem<?>> pivotColumns, Alias alias)UnPivotPipeOperator(Column valuesColumn, Column nameColumn, List<SelectItem<?>> pivotColumns, Alias alias) -
Uses of SelectItem in net.sf.jsqlparser.statement.select
Fields in net.sf.jsqlparser.statement.select with type parameters of type SelectItem Modifier and Type Field Description protected List<SelectItem<?>>AllColumns. replaceExpressionsMethods in net.sf.jsqlparser.statement.select that return SelectItem Modifier and Type Method Description static SelectItem<?>SelectItem. from(Expression expression)static SelectItem<?>SelectItem. from(Expression expression, Alias alias)SelectItem<?>PlainSelect. getSelectItem(int index)SelectItem<T>SelectItem. withAlias(Alias alias)SelectItem<T>SelectItem. withExpression(T expression)Methods in net.sf.jsqlparser.statement.select that return types with arguments of type SelectItem Modifier and Type Method Description List<SelectItem<?>>AllColumns. addReplaceExpression(SelectItem<?> selectItem)List<SelectItem<Function>>Pivot. getFunctionItems()List<SelectItem<ExpressionList<?>>>Pivot. getMultiInItems()List<SelectItem<?>>Distinct. getOnSelectItems()List<SelectItem<?>>AllColumns. getReplaceExpressions()List<SelectItem<?>>PlainSelect. getSelectItems()List<SelectItem<?>>Pivot. getSingleInItems()List<SelectItem<?>>UnPivot. getUnPivotInClause()List<SelectItem<?>>WithItem. getWithItemList()TheSelectItems in this WITH (for example the A,B,C in "WITH mywith (A,B,C) AS ...")Methods in net.sf.jsqlparser.statement.select with parameters of type SelectItem Modifier and Type Method Description PivotPivot. addFunctionItems(SelectItem<Function>... functionItems)PivotXmlPivotXml. addFunctionItems(SelectItem<Function>... functionItems)PivotPivot. addMultiInItems(SelectItem<ExpressionList<?>>... multiInItems)PivotXmlPivotXml. addMultiInItems(SelectItem<ExpressionList<?>>... multiInItems)DistinctDistinct. addOnSelectItems(SelectItem<?>... onSelectItems)List<SelectItem<?>>AllColumns. addReplaceExpression(SelectItem<?> selectItem)PlainSelectPlainSelect. addSelectItems(SelectItem<?>... items)PivotPivot. addSingleInItems(SelectItem<?>... singleInItems)PivotXmlPivotXml. addSingleInItems(SelectItem... singleInItems)WithItem<?>WithItem. addWithItemList(SelectItem<?>... withItemList)default voidSelectItemVisitor. visit(SelectItem<? extends Expression> selectItem)<S> TSelectItemVisitor. visit(SelectItem<? extends Expression> selectItem, S context)<S> TSelectItemVisitorAdapter. visit(SelectItem<? extends Expression> item, S context)PlainSelectPlainSelect. withSelectItems(SelectItem<?>... selectItems)Constructor parameters in net.sf.jsqlparser.statement.select with type arguments of type SelectItem Constructor Description AllColumns(ExpressionList<Column> exceptColumns, List<SelectItem<?>> replaceExpressions)AllColumns(ExpressionList<Column> exceptColumns, List<SelectItem<?>> replaceExpressions, String exceptKeyword)AllTableColumns(Table table, ExpressionList<Column> exceptColumns, List<SelectItem<?>> replaceExpressions)AllTableColumns(Table table, ExpressionList<Column> exceptColumns, List<SelectItem<?>> replaceExpressions, String exceptKeyword) -
Uses of SelectItem in net.sf.jsqlparser.util
Methods in net.sf.jsqlparser.util with parameters of type SelectItem Modifier and Type Method Description static SelectSelectUtils. buildSelectFromTableAndSelectItems(Table table, SelectItem... selectItems)<S> TAddAliasesVisitor. visit(SelectItem<?> selectExpressionItem, S context)<S> TConnectExpressionsVisitor. visit(SelectItem<? extends Expression> selectItem, S context)<S> VoidTablesNamesFinder. visit(SelectItem<?> item, S context)voidTablesNamesFinder. visit(SelectItem<? extends Expression> selectItem) -
Uses of SelectItem in net.sf.jsqlparser.util.deparser
Methods in net.sf.jsqlparser.util.deparser with parameters of type SelectItem Modifier and Type Method Description voidSelectDeParser. visit(SelectItem<?> selectExpressionItem)<S> StringBuilderSelectDeParser. visit(SelectItem<?> selectItem, S context)Method parameters in net.sf.jsqlparser.util.deparser with type arguments of type SelectItem Modifier and Type Method Description protected voidSelectDeParser. deparseSelectItemsClause(List<SelectItem<?>> selectItems) -
Uses of SelectItem in net.sf.jsqlparser.util.validation.validator
Methods in net.sf.jsqlparser.util.validation.validator with parameters of type SelectItem Modifier and Type Method Description voidSelectValidator. validate(SelectItem<?> statement)voidSelectValidator. visit(SelectItem<?> selectExpressionItem)<S> VoidSelectValidator. visit(SelectItem<?> selectExpressionItem, S context)
-