public class Aggregate extends Object
| Modifier and Type | Field and Description |
|---|---|
static AggregateFunction<Integer> |
count |
| Constructor and Description |
|---|
Aggregate() |
| Modifier and Type | Method and Description |
|---|---|
static AggregateFunction<Integer> |
count() |
static AggregateFunction<Integer> |
filterCount(FilterPredicate filterPredicate) |
static AggregateFunction<Integer> |
filterCount(String predicateString) |
static AggregateFunction<Comparable> |
first(String colName) |
static AggregateFunction<Comparable> |
last(String colName) |
static AggregateFunction<Comparable> |
max(String colName) |
static AggregateFunction<Double> |
mean(String colName) |
static AggregateFunction<Comparable> |
median(String colName) |
static AggregateFunction<Comparable> |
min(String colName) |
static AggregateFunction<Integer> |
naCount(String column) |
static AggregateFunction<Comparable> |
quantile(String colName,
double quantile) |
public static final AggregateFunction<Integer> count
public static AggregateFunction<Integer> count()
public static AggregateFunction<Double> mean(String colName)
public static AggregateFunction<Comparable> median(String colName)
public static AggregateFunction<Comparable> min(String colName)
public static AggregateFunction<Comparable> max(String colName)
public static AggregateFunction<Integer> filterCount(FilterPredicate filterPredicate)
public static AggregateFunction<Integer> filterCount(String predicateString)
public static AggregateFunction<Comparable> first(String colName)
public static AggregateFunction<Comparable> last(String colName)
public static AggregateFunction<Comparable> quantile(String colName, double quantile)
public static AggregateFunction<Integer> naCount(String column)
Copyright © 2020. All rights reserved.