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

cool.scx.data.query.Logic Maven / Gradle / Ivy

There is a newer version: 2.7.4
Show newest version
package cool.scx.data.query;

import cool.scx.data.Query;

import static cool.scx.data.Query.where;

public interface Logic extends Query {

    LogicType type();

    Object[] clauses();

    @Override
    default Where getWhere() {
        return where(this);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy