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

com.smartystreets.api.international_street.LanguageMode Maven / Gradle / Ivy

There is a newer version: 3.18.3
Show newest version
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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy