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

fun.langel.cql.statement.Statements Maven / Gradle / Ivy

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

import fun.langel.cql.node.Node;

import java.util.Iterator;
import java.util.List;

/**
 * @author [email protected](GuHan)
 * @since 2022/7/20 20:00
 **/
public class Statements implements Node, Iterable {

    private final List statements;

    public Statements(List statements) {
        this.statements = statements;
    }

    public List statements() {
        return this.statements;
    }

    @Override
    public Iterator iterator() {
        return statements.iterator();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy