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

56 lines
1.9 KiB
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package o;
import java.math.BigDecimal;
import org.threeten.bp.OffsetDateTime;
/* loaded from: classes3.dex */
public final class bPN {
public OffsetDateTime a;
public BigDecimal b;
public BigDecimal c;
public BigDecimal d;
public bPN(BigDecimal bigDecimal, OffsetDateTime offsetDateTime, BigDecimal bigDecimal2, BigDecimal bigDecimal3) {
this.c = bigDecimal;
this.a = offsetDateTime;
this.b = bigDecimal2;
this.d = bigDecimal3;
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
bPN bpn = (bPN) obj;
BigDecimal bigDecimal = this.c;
if (bigDecimal == null ? bpn.c != null : !bigDecimal.equals(bpn.c)) {
return false;
}
OffsetDateTime offsetDateTime = this.a;
if (offsetDateTime == null ? bpn.a != null : !offsetDateTime.equals(bpn.a)) {
return false;
}
BigDecimal bigDecimal2 = this.b;
if (bigDecimal2 == null ? bpn.b != null : !bigDecimal2.equals(bpn.b)) {
return false;
}
BigDecimal bigDecimal3 = this.d;
BigDecimal bigDecimal4 = bpn.d;
return bigDecimal3 != null ? bigDecimal3.equals(bigDecimal4) : bigDecimal4 == null;
}
public final int hashCode() {
BigDecimal bigDecimal = this.c;
int hashCode = bigDecimal != null ? bigDecimal.hashCode() : 0;
OffsetDateTime offsetDateTime = this.a;
int hashCode2 = offsetDateTime != null ? offsetDateTime.hashCode() : 0;
BigDecimal bigDecimal2 = this.b;
int hashCode3 = bigDecimal2 != null ? bigDecimal2.hashCode() : 0;
BigDecimal bigDecimal3 = this.d;
return (((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + (bigDecimal3 != null ? bigDecimal3.hashCode() : 0);
}
}