- java.lang.Object
-
- net.sf.jsqlparser.parser.ASTNodeAccessImpl
-
- net.sf.jsqlparser.statement.piped.PipeOperator
-
- net.sf.jsqlparser.statement.piped.AggregatePipeOperator
-
- All Implemented Interfaces:
Serializable,net.sf.jsqlparser.parser.ASTNodeAccess
public class AggregatePipeOperator extends PipeOperator
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AggregatePipeOperator(SelectItem<?> selectItem, String orderSuffix)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T,S>
Taccept(PipeOperatorVisitor<T,S> visitor, S context)AggregatePipeOperatoradd(SelectItem<?> selectItem, String orderSuffix)AggregatePipeOperatoraddGroupItem(SelectItem<?> selectItem, String orderSuffix)StringBuilderappendTo(StringBuilder builder)ArrayList<SelectItem<?>>getGroupItems()ArrayList<String>getGroupItemsOrderSuffices()ArrayList<SelectItem<?>>getSelectItems()ArrayList<String>getSelectItemsOrderSuffices()booleanisUsingShortHandOrdering()AggregatePipeOperatorsetShorthandOrdering(boolean usingShortHandOrdering)AggregatePipeOperatorwith(SelectItem<?> selectItem, String orderSuffix)AggregatePipeOperatorwithGroupItem(SelectItem<?> selectItem, String orderSuffix)
-
-
-
Constructor Detail
-
AggregatePipeOperator
public AggregatePipeOperator(SelectItem<?> selectItem, String orderSuffix)
-
-
Method Detail
-
getSelectItems
public ArrayList<SelectItem<?>> getSelectItems()
-
getGroupItems
public ArrayList<SelectItem<?>> getGroupItems()
-
add
public AggregatePipeOperator add(SelectItem<?> selectItem, String orderSuffix)
-
with
public AggregatePipeOperator with(SelectItem<?> selectItem, String orderSuffix)
-
addGroupItem
public AggregatePipeOperator addGroupItem(SelectItem<?> selectItem, String orderSuffix)
-
withGroupItem
public AggregatePipeOperator withGroupItem(SelectItem<?> selectItem, String orderSuffix)
-
isUsingShortHandOrdering
public boolean isUsingShortHandOrdering()
-
setShorthandOrdering
public AggregatePipeOperator setShorthandOrdering(boolean usingShortHandOrdering)
-
accept
public <T,S> T accept(PipeOperatorVisitor<T,S> visitor, S context)
- Specified by:
acceptin classPipeOperator
-
appendTo
public StringBuilder appendTo(StringBuilder builder)
- Overrides:
appendToin classnet.sf.jsqlparser.parser.ASTNodeAccessImpl
-
-