Package org.springmodules.samples.lucene.bean.search

Examples of org.springmodules.samples.lucene.bean.search.SearchResult


        return new QueryParams(fieldName, textToSearch);
      }
    }, new HitExtractor() {
      public Object mapHit(int id, Document document, float score) {
        if( document.get("request")!=null ) {
          return new SearchResult(document.get("id"), document.get("request"),
                      score,document.get("category"));
        } else {
          return new SearchResult(document.get("id"), document.get("filename"),
                      score, document.get("category"));
        }
      }
    });
  }
View Full Code Here

TOP

Related Classes of org.springmodules.samples.lucene.bean.search.SearchResult

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.