All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tech.tablesaw.aggregate.BooleanAggregateFunction Maven / Gradle / Ivy

There is a newer version: 0.43.1
Show newest version
package tech.tablesaw.aggregate;

import tech.tablesaw.api.BooleanColumn;
import tech.tablesaw.api.ColumnType;

/**
 * A partial implementation of aggregate functions to summarize over a boolean column
 */
public abstract class BooleanAggregateFunction extends AggregateFunction {

    public BooleanAggregateFunction(String name) {
        super(name);
    }

    abstract public Boolean summarize(BooleanColumn column);

    @Override
    public boolean isCompatibleColumn(ColumnType type) {
        return type == ColumnType.BOOLEAN;
    }

    @Override
    public ColumnType returnType() {
        return ColumnType.BOOLEAN;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy