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

io.mosip.kernel.transliteration.icu4j.constant.TransliterationPropertyConstant Maven / Gradle / Ivy

There is a newer version: 1.3.0-beta.1
Show newest version
package io.mosip.kernel.transliteration.icu4j.constant;

/**
 * This enum contains property for transliteration.
 * 
 * @author Ritesh Sinha
 * @since 1.0.0
 */
public enum TransliterationPropertyConstant {

	TRANSLITERATION_ID_SEPARATOR("-");

	/**
	 * The property.
	 */
	private String property;

	/**
	 * Constructor for TransliterationPropertyConstant.
	 * 
	 * @param property the property.
	 */
	TransliterationPropertyConstant(String property) {
		this.property = property;
	}

	/**
	 * Getter for property.
	 * 
	 * @return the property.
	 */
	public String getProperty() {
		return property;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy