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

56 lines
1.4 KiB
Java

package o;
import java.util.List;
/* loaded from: classes3.dex */
public final class LSn {
private final boolean a;
private final Double c;
public final List<KoG> e;
public LSn(List<KoG> list, Double d, boolean z) {
C14957gcv.e(list, "");
this.e = list;
this.c = d;
this.a = z;
}
public final String toString() {
List<KoG> list = this.e;
Double d = this.c;
boolean z = this.a;
StringBuilder sb = new StringBuilder("LoanSummaryList(loanList=");
sb.append(list);
sb.append(", totalRemainingBalance=");
sb.append(d);
sb.append(", isTotalFromAllAccounts=");
sb.append(z);
sb.append(")");
return sb.toString();
}
/* JADX WARN: Multi-variable type inference failed */
public final int hashCode() {
int hashCode = this.e.hashCode();
Double d = this.c;
int hashCode2 = d == null ? 0 : d.hashCode();
boolean z = this.a;
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 LSn)) {
return false;
}
LSn lSn = (LSn) obj;
return C14957gcv.b(this.e, lSn.e) && C14957gcv.b(this.c, lSn.c) && this.a == lSn.a;
}
}