All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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