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

81 lines
2.2 KiB
Java

package o;
import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
/* loaded from: classes2.dex */
public final class DJW {
private final List<HBt> a;
private final Integer b;
private final yiD e;
/* loaded from: classes2.dex */
public static final class IeS {
public ArrayList<HBt> d = new ArrayList<>();
public yiD b = yiD.a;
public Integer c = null;
}
public /* synthetic */ DJW(yiD yid, List list, Integer num, byte b) {
this(yid, list, num);
}
/* loaded from: classes2.dex */
public static final class HBt {
public final int a;
private final HeE b;
private final C0189BJj d;
public /* synthetic */ HBt(C0189BJj c0189BJj, int i, HeE heE, byte b) {
this(c0189BJj, i, heE);
}
private HBt(C0189BJj c0189BJj, int i, HeE heE) {
this.d = c0189BJj;
this.a = i;
this.b = heE;
}
public final boolean equals(Object obj) {
if (!(obj instanceof HBt)) {
return false;
}
HBt hBt = (HBt) obj;
return this.d == hBt.d && this.a == hBt.a && this.b.equals(hBt.b);
}
public final int hashCode() {
return Objects.hash(this.d, Integer.valueOf(this.a), Integer.valueOf(this.b.hashCode()));
}
public final String toString() {
C0189BJj c0189BJj = this.d;
int i = this.a;
return String.format("(status=%s, keyId=%s, parameters='%s')", c0189BJj, Integer.valueOf(i), this.b);
}
}
private DJW(yiD yid, List<HBt> list, Integer num) {
this.e = yid;
this.a = list;
this.b = num;
}
public final boolean equals(Object obj) {
if (!(obj instanceof DJW)) {
return false;
}
DJW djw = (DJW) obj;
return this.e.equals(djw.e) && this.a.equals(djw.a) && Objects.equals(this.b, djw.b);
}
public final int hashCode() {
return Objects.hash(this.e, this.a);
}
public final String toString() {
return String.format("(annotations=%s, entries=%s, primaryKeyId=%s)", this.e, this.a, this.b);
}
}