package S2;

import java.util.Collections;
import java.util.Map;

/* JADX INFO: loaded from: classes.dex */
public final class c {

    /* JADX INFO: renamed from: a, reason: collision with root package name */
    public final String f2809a;

    /* JADX INFO: renamed from: b, reason: collision with root package name */
    public final Map f2810b;

    public c(String str, Map map) {
        this.f2809a = str;
        this.f2810b = map;
    }

    public static c a(String str) {
        return new c(str, Collections.EMPTY_MAP);
    }

    public final boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (!(obj instanceof c)) {
            return false;
        }
        c cVar = (c) obj;
        return this.f2809a.equals(cVar.f2809a) && this.f2810b.equals(cVar.f2810b);
    }

    public final int hashCode() {
        return this.f2810b.hashCode() + (this.f2809a.hashCode() * 31);
    }

    public final String toString() {
        return "FieldDescriptor{name=" + this.f2809a + ", properties=" + this.f2810b.values() + "}";
    }
}
