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

fun.langel.cql.statement.impl.InsertStatementImpl Maven / Gradle / Ivy

The newest version!
package fun.langel.cql.statement.impl;

import fun.langel.cql.node.Column;
import fun.langel.cql.node.Table;
import fun.langel.cql.node.Value;
import fun.langel.cql.statement.InsertStatement;

import java.util.List;

/**
 * @author Rick(lonelyangel.jcw @ gmail.com)
 * created 2024/9/10 15:44
 **/
public class InsertStatementImpl implements InsertStatement {


    private Table table;

    private List into;

    private List> values;

    public InsertStatementImpl() {
    }


    public void setTable(Table table) {
        this.table = table;
    }

    public void setInto(List into) {
        this.into = into;
    }

    public void setValues(List> values) {
        this.values = values;
    }

    @Override
    public Table table() {
        return this.table;
    }

    @Override
    public List into() {
        return this.into;
    }

    @Override
    public List> values() {
        return this.values;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy