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

fun.langel.cql.node.From Maven / Gradle / Ivy

The newest version!
package fun.langel.cql.node;

import java.util.List;

/**
 * @author [email protected](GuHan)
 * @since 2022/7/31 20:37
 **/
public class From implements Node {

    private Expr where;

    private List tables;

    public From(List
tables, Expr where) { this.tables = tables; this.where = where; } public List
tables() { return this.tables; } public Expr where() { return this.where; } }