package n;

import java.util.Map;

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

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

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

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

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

    public c(Object obj, Object obj2) {
        this.f30704a = obj;
        this.f30705b = obj2;
    }

    @Override // java.util.Map.Entry
    public final boolean equals(Object obj) {
        if (obj == this) {
            return true;
        }
        if (!(obj instanceof c)) {
            return false;
        }
        c cVar = (c) obj;
        return this.f30704a.equals(cVar.f30704a) && this.f30705b.equals(cVar.f30705b);
    }

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

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

    @Override // java.util.Map.Entry
    public final int hashCode() {
        return this.f30704a.hashCode() ^ this.f30705b.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.f30704a + "=" + this.f30705b;
    }
}
