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

tech.tablesaw.analytic.FunctionMetaData Maven / Gradle / Ivy

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

import tech.tablesaw.api.ColumnType;

/** Base class for an Analytic Function. */
interface FunctionMetaData {
  String functionName();

  ColumnType returnType();

  boolean isCompatibleColumn(ColumnType type);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy