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

com.what3words.javawrapper.response.Language Maven / Gradle / Ivy

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;
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy