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