package x4;

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

/* JADX INFO: renamed from: x4.c, reason: case insensitive filesystem */
/* JADX INFO: loaded from: classes.dex */
public final class C1718c {

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

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

    public C1718c(String str, Map map) {
        this.f18672a = str;
        this.f18673b = map;
    }

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

    public final boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (!(obj instanceof C1718c)) {
            return false;
        }
        C1718c c1718c = (C1718c) obj;
        return this.f18672a.equals(c1718c.f18672a) && this.f18673b.equals(c1718c.f18673b);
    }

    public final int hashCode() {
        return this.f18673b.hashCode() + (this.f18672a.hashCode() * 31);
    }

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