Package com.flaptor.indextank.index

Examples of com.flaptor.indextank.index.DocId


    public MockSearchResults() {
        results = Lists.newArrayList();
    }

    public void addResult(double score, String docid) {
        results.add(new ScoredMatch(score, new DocId(docid)));
    }
View Full Code Here

TOP

Related Classes of com.flaptor.indextank.index.DocId

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.