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

56 lines
1.6 KiB
Java

package o;
/* loaded from: classes3.dex */
public final class bBY {
public final String a;
public final Integer b;
public final String c;
public final String d;
public bBY(Integer num, String str, String str2, String str3) {
this.b = num;
this.a = str;
this.d = str2;
this.c = str3;
}
public final String toString() {
Integer num = this.b;
String str = this.a;
String str2 = this.d;
String str3 = this.c;
StringBuilder sb = new StringBuilder("AutoDetails(sortSequence=");
sb.append(num);
sb.append(", key=");
sb.append(str);
sb.append(", label=");
sb.append(str2);
sb.append(", value=");
sb.append(str3);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
Integer num = this.b;
int hashCode = num == null ? 0 : num.hashCode();
String str = this.a;
int hashCode2 = str == null ? 0 : str.hashCode();
String str2 = this.d;
int hashCode3 = str2 == null ? 0 : str2.hashCode();
String str3 = this.c;
return (((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + (str3 != null ? str3.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof bBY)) {
return false;
}
bBY bby = (bBY) obj;
return C14957gcv.b(this.b, bby.b) && C14957gcv.b((Object) this.a, (Object) bby.a) && C14957gcv.b((Object) this.d, (Object) bby.d) && C14957gcv.b((Object) this.c, (Object) bby.c);
}
}