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, toString
public BooleanAggregateFunction(String name)
Summarizer
public 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 © 2021. All rights reserved.