package k;

import java.util.Map;

/* JADX INFO: renamed from: k.c, reason: case insensitive filesystem */
/* JADX INFO: loaded from: classes.dex */
public final class C2367c implements Map.Entry {

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

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

    /* JADX INFO: renamed from: c, reason: collision with root package name */
    public C2367c f19608c;

    /* JADX INFO: renamed from: d, reason: collision with root package name */
    public C2367c f19609d;

    public C2367c(Object obj, Object obj2) {
        this.f19606a = obj;
        this.f19607b = obj2;
    }

    @Override // java.util.Map.Entry
    public final boolean equals(Object obj) {
        if (obj == this) {
            return true;
        }
        if (!(obj instanceof C2367c)) {
            return false;
        }
        C2367c c2367c = (C2367c) obj;
        return this.f19606a.equals(c2367c.f19606a) && this.f19607b.equals(c2367c.f19607b);
    }

    @Override // java.util.Map.Entry
    public final Object getKey() {
        return this.f19606a;
    }

    @Override // java.util.Map.Entry
    public final Object getValue() {
        return this.f19607b;
    }

    @Override // java.util.Map.Entry
    public final int hashCode() {
        return this.f19606a.hashCode() ^ this.f19607b.hashCode();
    }

    @Override // java.util.Map.Entry
    public final Object setValue(Object obj) {
        throw new UnsupportedOperationException("An entry modification is not supported");
    }

    public final String toString() {
        return this.f19606a + "=" + this.f19607b;
    }
}
