Package com.xebia.search

Examples of com.xebia.search.LuceneSearcherImpl


import com.xebia.search.LuceneSearcherImpl;

public class SearchExample {

    public static void main(String[] args) {
        LuceneSearcher luceneSearcher = new LuceneSearcherImpl();
        List<String> values = luceneSearcher.search("names", "albert");
        for (String value : values) {
            System.out.println(value);
        }
    }
View Full Code Here

TOP

Related Classes of com.xebia.search.LuceneSearcherImpl

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.