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

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

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

import fun.langel.cql.node.*;

import java.util.Collections;
import java.util.List;

/**
 * @author [email protected](GuHan)
 * @since 2022/7/31 20:44
 **/
public interface SelectStatement extends Statement {

    default List columns() {
        return Collections.emptyList();
    }

    Expr where();

    List tables();

    default Limit limit() {
        return null;
    }

    default OrderBy orderBy() {
        return null;
    }

    default GroupBy groupBy() {
        return null;
    }
}