Package com.jengine.orm.model.query.filter

Examples of com.jengine.orm.model.query.filter.StringFilter


    /* filter methods */

    public BaseQuery filter(String query, Object ... params) throws DBException {
        try {
            StringFilter stringFilter = new StringFilter(query, params);
            stringFilter.config(this);
            this.stringFilters.add(stringFilter);
        } catch (Exception e) {
            throw new DBException(e);
        }

View Full Code Here


        return (Cluster) super.and(model, name);
    }

    public Cluster filterCluster(String query, Object ... params) throws DBException {
        try {
            stringFilters.add(new StringFilter(query, toList(params)));
        } catch (Exception e) {
            throw new DBException(e);
        }
        return this;
    }
View Full Code Here

TOP

Related Classes of com.jengine.orm.model.query.filter.StringFilter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.