package com.seewo.sdk.model;

import com.seewo.sdk.internal.model.SDKParsable;
import java.text.Collator;
import java.util.Locale;

/* JADX INFO: loaded from: classes.dex */
public class SDKLocaleInfo implements Comparable<SDKLocaleInfo>, SDKParsable {
    private static final Collator e = Collator.getInstance();
    private String b;
    private Locale d;

    private SDKLocaleInfo() {
    }

    public String getLabel() {
        return this.b;
    }

    public Locale getLocale() {
        return this.d;
    }

    public void setLabel(String str) {
        this.b = str;
    }

    public void setLocale(Locale locale) {
        this.d = locale;
    }

    public String toString() {
        return "SDKLocaleInfo{label='" + this.b + "', locale=" + this.d + '}';
    }

    public SDKLocaleInfo(String str, Locale locale) {
        this();
        this.b = str;
        this.d = locale;
    }

    @Override // java.lang.Comparable
    public int compareTo(SDKLocaleInfo sDKLocaleInfo) {
        return e.compare(this.b, sDKLocaleInfo.b);
    }
}
