what-the-bank/sources/o/ROy.java

52 lines
1.3 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package o;
/* loaded from: classes3.dex */
public final class ROy {
private final int b;
public final boolean d;
private final int e;
public ROy(int i, int i2, boolean z) {
this.e = i;
this.b = i2;
this.d = z;
}
public final String toString() {
int i = this.e;
int i2 = this.b;
boolean z = this.d;
StringBuilder sb = new StringBuilder("ProductRecommendNotification(readCounter=");
sb.append(i);
sb.append(", unreadCounter=");
sb.append(i2);
sb.append(", isUnread=");
sb.append(z);
sb.append(")");
return sb.toString();
}
/* JADX WARN: Multi-variable type inference failed */
public final int hashCode() {
int hashCode = Integer.hashCode(this.e);
int hashCode2 = Integer.hashCode(this.b);
boolean z = this.d;
int i = z;
if (z != 0) {
i = 1;
}
return (((hashCode * 31) + hashCode2) * 31) + i;
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof ROy)) {
return false;
}
ROy rOy = (ROy) obj;
return this.e == rOy.e && this.b == rOy.b && this.d == rOy.d;
}
}