Examples of NotDocIdSet


Examples of org.elasticsearch.common.lucene.docset.NotDocIdSet

        DocIdSet set = filter.getDocIdSet(context, null);
        DocIdSet notSet;
        if (DocIdSets.isEmpty(set)) {
            notSet = new AllDocIdSet(context.reader().maxDoc());
        } else {
            notSet = new NotDocIdSet(set, context.reader().maxDoc());
        }
        return BitsFilteredDocIdSet.wrap(notSet, acceptDocs);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.