package j0; /* compiled from: Notification */ public final class f { public static final f a = new f<>(a.OnCompleted, null, null); public final a b; /* renamed from: c reason: collision with root package name */ public final Throwable f3004c; public final T d; /* compiled from: Notification */ public enum a { OnNext, OnError, OnCompleted } public f(a aVar, T t, Throwable th) { this.d = t; this.f3004c = th; this.b = aVar; } public boolean a() { return (this.b == a.OnError) && this.f3004c != null; } public boolean b() { return (this.b == a.OnNext) && this.d != null; } public boolean equals(Object obj) { if (obj == null) { return false; } if (this == obj) { return true; } if (obj.getClass() != f.class) { return false; } f fVar = (f) obj; if (fVar.b != this.b) { return false; } T t = this.d; T t2 = fVar.d; if (t != t2 && (t == null || !t.equals(t2))) { return false; } Throwable th = this.f3004c; Throwable th2 = fVar.f3004c; return th == th2 || (th != null && th.equals(th2)); } public int hashCode() { int hashCode = this.b.hashCode(); if (b()) { hashCode = (hashCode * 31) + this.d.hashCode(); } return a() ? (hashCode * 31) + this.f3004c.hashCode() : hashCode; } public String toString() { StringBuilder sb = new StringBuilder(64); sb.append('['); sb.append(super.toString()); sb.append(' '); sb.append(this.b); if (b()) { sb.append(' '); sb.append((Object) this.d); } if (a()) { sb.append(' '); sb.append(this.f3004c.getMessage()); } sb.append(']'); return sb.toString(); } }