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

fun.langel.cql.node.func.Avg Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2022. Lorem ipsum dolor sit amet, consectetur adipiscing elit.
 * Morbi non lorem porttitor neque feugiat blandit. Ut vitae ipsum eget quam lacinia accumsan.
 * Etiam sed turpis ac ipsum condimentum fringilla. Maecenas magna.
 * Proin dapibus sapien vel ante. Aliquam erat volutpat. Pellentesque sagittis ligula eget metus.
 * Vestibulum commodo. Ut rhoncus gravida arcu.
 */

package fun.langel.cql.node.func;

import fun.langel.cql.node.Column;
import fun.langel.cql.node.Function;
import fun.langel.cql.node.Node;

/**
 * @author [email protected](GuHan)
 * @date 2022/12/15 21:09
 **/
public class Avg implements Function {

    private final Column executable;

    private Avg(final Column executable) {
        this.executable = executable;
    }

    @Override
    public Node executable() {
        return this.executable;
    }

    public static Avg of(Column col) {
        return new Avg(col);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy