Package org.springmodules.lucene.search.core

Examples of org.springmodules.lucene.search.core.ParsedQueryCreator


  /**
   *
   */
  public List search(final String fieldName,final String textToSearch) {
    return getLuceneSearcherTemplate().search(new ParsedQueryCreator() {
      public QueryParams configureQuery() {
        return new QueryParams(fieldName, textToSearch);
      }
    }, new HitExtractor() {
      public Object mapHit(int id, Document document, float score) {
View Full Code Here

TOP

Related Classes of org.springmodules.lucene.search.core.ParsedQueryCreator

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.