com.what3words.javawrapper.response.Language Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of w3w-java-wrapper Show documentation
Show all versions of w3w-java-wrapper Show documentation
Java library for what3words REST API.
The newest version!
package com.what3words.javawrapper.response;
import java.util.List;
public class Language {
private String code;
private String name;
private String nativeName;
private List locales;
public Language(String code, String name, String nativeName) {
this.code = code;
this.name = name;
this.nativeName = nativeName;
}
public Language(String code, String name, String nativeName, List locales) {
this.code = code;
this.name = name;
this.nativeName = nativeName;
this.locales = locales;
}
public String getCode() {
return code;
}
public String getName() {
return name;
}
public String getNativeName() {
return nativeName;
}
public List getLocales() {
return locales;
}
}