Package org.elasticsearch.index.query

Examples of org.elasticsearch.index.query.BaseFilterBuilder


    }

    public static BaseFilterBuilder idFilter(String key, String val) {
        int index = key.indexOf(ElasticTweetSearch._ID);
        String type = key.substring(index + ElasticTweetSearch._ID.length());
        BaseFilterBuilder fb;
        if (val.contains(" OR "))
            fb = FilterBuilders.idsFilter(type).ids(val.split(" OR "));
        else
            fb = FilterBuilders.idsFilter(type).ids(val);
View Full Code Here

TOP

Related Classes of org.elasticsearch.index.query.BaseFilterBuilder

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.