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

io.github.shanqiang.function.WindowFunction Maven / Gradle / Ivy

The newest version!
package io.github.shanqiang.function;

import io.github.shanqiang.table.Row;

import java.util.List;

public interface WindowFunction {
    //可以一次计算每一行的多个列出来,比如count,max,avg,rank四列一次计算出来
    List transform(List partitionByColumns, List rows, int needCompute);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy