List of usage examples for org.apache.lucene.analysis.ja.util ToStringUtil getInflectionTypeTranslation
public static String getInflectionTypeTranslation(String s)
From source file:com.github.riccardove.easyjasub.lucene.LuceneUtil.java
License:Apache License
public static String translateInflectionType(String inflectionType) { String translation = ToStringUtil.getInflectionTypeTranslation(inflectionType); return translation != null ? translation : inflectionType; }