public final class GroupByScanAggregation extends Object
Modifier and Type | Method and Description |
---|---|
static GroupByScanAggregation |
count(NullPolicy nullPolicy)
Count number of elements.
|
static GroupByScanAggregation |
denseRank()
Get the row's dense ranking.
|
boolean |
equals(Object other) |
int |
hashCode() |
static GroupByScanAggregation |
max()
Max Aggregation
|
static GroupByScanAggregation |
min()
Min Aggregation
|
GroupByScanAggregationOnColumn |
onColumn(int columnIndex)
Add a column to the Aggregation so it can be used on a specific column of data.
|
static GroupByScanAggregation |
percentRank()
Get the row's percent ranking.
|
static GroupByScanAggregation |
product()
Product Aggregation.
|
static GroupByScanAggregation |
rank()
Get the row's ranking.
|
static GroupByScanAggregation |
sum()
Sum Aggregation
|
public GroupByScanAggregationOnColumn onColumn(int columnIndex)
columnIndex
- the index of the column to operate on.public static GroupByScanAggregation sum()
public static GroupByScanAggregation product()
public static GroupByScanAggregation min()
public static GroupByScanAggregation max()
public static GroupByScanAggregation count(NullPolicy nullPolicy)
nullPolicy
- INCLUDE if nulls should be counted. EXCLUDE if only non-null values
should be counted.public static GroupByScanAggregation rank()
public static GroupByScanAggregation denseRank()
public static GroupByScanAggregation percentRank()
Copyright © 2024. All rights reserved.