Package com.senseidb.search.client.req

Examples of com.senseidb.search.client.req.Term


    public static IsNull isNull(String fieldName) {
        return new IsNull(fieldName);
    }

    public static Term term(String field, String value) {
        return (Term) new Term(value).setField(field);
    }
View Full Code Here


    public static PathQuery path(String field, String name, double boost) {
        return new PathQuery(field, name, boost);
    }

    public static Term term(String field, String value, double boost) {
        return (Term) new Term(value, boost).setField(field);
    }
View Full Code Here

TOP

Related Classes of com.senseidb.search.client.req.Term

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.