package n4;

import androidx.annotation.Nullable;
import androidx.room.ColumnInfo;

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

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

    @Nullable
    @ColumnInfo(name = "long_value")
    public Long mValue;

    public d(String str, long j10) {
        this.f30807a = str;
        this.mValue = Long.valueOf(j10);
    }

    public final boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (!(obj instanceof d)) {
            return false;
        }
        d dVar = (d) obj;
        if (!this.f30807a.equals(dVar.f30807a)) {
            return false;
        }
        Long l10 = this.mValue;
        Long l11 = dVar.mValue;
        return l10 != null ? l10.equals(l11) : l11 == null;
    }

    public final int hashCode() {
        int iHashCode = this.f30807a.hashCode() * 31;
        Long l10 = this.mValue;
        return iHashCode + (l10 != null ? l10.hashCode() : 0);
    }
}
