com.smartystreets.api.international_street.LanguageMode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of smartystreets-java-sdk Show documentation
Show all versions of smartystreets-java-sdk Show documentation
A library to help Java developers easily access the SmartyStreets APIs.
package com.smartystreets.api.international_street;
/**
* When not set, the output language will match the language of the input values. When set to NATIVE the
* results will always be in the language of the output country. When set to LATIN the results
* will always be provided using a Latin character set.
*/
public enum LanguageMode {
NATIVE("native"), LATIN("latin");
private final String name;
LanguageMode(String name){
this.name = name;
}
public String getName(){
return name;
}
}