discord-jadx/app/src/main/java/j0/f.java

82 lines
2.0 KiB
Java

package j0;
/* compiled from: Notification */
public final class f<T> {
public static final f<Void> a = new f<>(a.OnCompleted, null, null);
public final a b;
/* renamed from: c reason: collision with root package name */
public final Throwable f2851c;
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.f2851c = th;
this.b = aVar;
}
public boolean a() {
return (this.b == a.OnError) && this.f2851c != 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.f2851c;
Throwable th2 = fVar.f2851c;
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.f2851c.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.f2851c.getMessage());
}
sb.append(']');
return sb.toString();
}
}