Uses of Interface
com.espertech.esper.common.client.soda.GroupByClauseExpression
Package
Description
This package defines the Esper statement object model.
-
Uses of GroupByClauseExpression in com.espertech.esper.common.client.soda
Modifier and TypeClassDescriptionclass
A combination of expressions is for example "(a, b)", wherein the list of expressions provided together logically make up a grouping level.class
Represents the "grouping sets" keywords.class
Represents a rollup or cube in a group-by clause.class
Represents a single expression (non-combined, rollup/cube or grouping set) as part of a group-by expression.Modifier and TypeMethodDescriptionGroupByClauseExpressionGroupingSet.getExpressions()
Returns list of expressions in grouping set.GroupByClauseExpressionRollupOrCube.getExpressions()
Returns the rollup or cube group-by expressions.GroupByClause.getGroupByExpressions()
Returns the expressions providing the grouped-by values.Modifier and TypeMethodDescriptionvoid
GroupByClauseExpressionGroupingSet.setExpressions
(List<GroupByClauseExpression> expressions) Sets the list of expressions in grouping set.void
GroupByClauseExpressionRollupOrCube.setExpressions
(List<GroupByClauseExpression> expressions) Sets the rollup or cube group-by expressions.void
GroupByClause.setGroupByExpressions
(List<GroupByClauseExpression> groupByExpressions) Sets the expressions providing the grouped-by values.ModifierConstructorDescriptionGroupByClause
(List<GroupByClauseExpression> groupByExpressions) Ctor.GroupByClauseExpressionGroupingSet
(List<GroupByClauseExpression> expressions) Ctor.GroupByClauseExpressionRollupOrCube
(boolean cube, List<GroupByClauseExpression> expressions) Ctor.