Package org.apache.lucene.morphology.russian

Examples of org.apache.lucene.morphology.russian.RussianAnalyzer


    @Inject
    public RussianMorphologyAnalyzerProvider(Index index, @IndexSettings Settings indexSettings,
                                             @Assisted String name, @Assisted Settings settings) {
        super(index, indexSettings, name, settings);
        try {
            analyzer = new RussianAnalyzer();
        } catch (IOException ex) {
            throw new ElasticsearchIllegalArgumentException("Unable to load Russian morphology analyzer", ex);
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.lucene.morphology.russian.RussianAnalyzer

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.