public abstract class DateAggregateFunction extends AggregateFunction<DateColumn,LocalDate>
| Constructor | Description |
|---|---|
DateAggregateFunction(String name) |
Constructs a DateAggregateFunction with the given name.
|
| Modifier and Type | Method | Description |
|---|---|---|
boolean |
isCompatibleColumn(ColumnType type) |
Returns true if the given
ColumnType is compatible with this function |
ColumnType |
returnType() |
Returns the
ColumnType to be used for the values returned by this function |
abstract LocalDate |
summarize(DateColumn column) |
Returns an instance of LocalDate that is the result of applying this function to the given
column
|
functionName, toStringpublic DateAggregateFunction(String name)
Summarizerpublic abstract LocalDate summarize(DateColumn column)
summarize in class AggregateFunction<DateColumn,LocalDate>public boolean isCompatibleColumn(ColumnType type)
ColumnType is compatible with this functionisCompatibleColumn in class AggregateFunction<DateColumn,LocalDate>public ColumnType returnType()
ColumnType to be used for the values returned by this functionreturnType in class AggregateFunction<DateColumn,LocalDate>Copyright © 2021. All rights reserved.