Simple Java wrapper for Yandex MyStem (morphological analysis for Russian text). It enables integration with the excellent tool from within a Java application and allows you to work with the console MyStem tool in a object-oriented way.
Options options = new Options()
.setOutputFormat(Options.OutputFormatType.JSON)
.setPrintGramInfo(false)
.setPrintWeight(true)
.setPrintAllSuggestions(true);
Stemmer stemmer = new Stemmer(options);
List<Word> results = stemmer.stem(
"Глокая куздра штеко будланула бокра и курдячит бокрёнка.");Mystem Simple Wrapper is licensed under MIT License.