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 {

    /* JADX INFO: renamed from: g, reason: collision with root package name */
    private static final Collator f2828g = Collator.getInstance();

    /* JADX INFO: renamed from: b, reason: collision with root package name */
    private String f2829b;

    /* JADX INFO: renamed from: f, reason: collision with root package name */
    private Locale f2830f;

    private SDKLocaleInfo() {
    }

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

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

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

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

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

    public SDKLocaleInfo(String str, Locale locale) {
        this();
        this.f2829b = str;
        this.f2830f = locale;
    }

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