Package com.xebia.search

Examples of com.xebia.search.LuceneSearcher.search()


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
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.