public abstract class DateTimeAggregateFunction extends AggregateFunction<DateTimeColumn,LocalDateTime>
| Constructor | Description |
|---|---|
DateTimeAggregateFunction(String name) |
Constructs an DateTimeAggregateFunction 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 LocalDateTime |
summarize(DateTimeColumn column) |
Returns an LocalDateTime that is the result of applying this function to the given column
|
functionName, toStringpublic DateTimeAggregateFunction(String name)
public abstract LocalDateTime summarize(DateTimeColumn column)
summarize in class AggregateFunction<DateTimeColumn,LocalDateTime>public boolean isCompatibleColumn(ColumnType type)
ColumnType is compatible with this functionisCompatibleColumn in class AggregateFunction<DateTimeColumn,LocalDateTime>public ColumnType returnType()
ColumnType to be used for the values returned by this functionreturnType in class AggregateFunction<DateTimeColumn,LocalDateTime>Copyright © 2022. All rights reserved.