![JAR search and dependency download from the Maven repository](/logo.png)
com.redislabs.lettusearch.index.field.PhoneticMatcher Maven / Gradle / Ivy
package com.redislabs.lettusearch.index.field;
public enum PhoneticMatcher {
English("dm:en"), French("dm:fr"), Portuguese("dm:pt"), Spanish("dm:es");
private final String code;
PhoneticMatcher(String code) {
this.code = code;
}
public String getCode() {
return code;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy