72 lines
1.8 KiB
Java
72 lines
1.8 KiB
Java
package o;
|
|
|
|
import java.util.List;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class LBA {
|
|
public final List<HBt> a;
|
|
|
|
public LBA(List<HBt> list) {
|
|
C14957gcv.e(list, "");
|
|
this.a = list;
|
|
}
|
|
|
|
/* loaded from: classes3.dex */
|
|
public static final class HBt {
|
|
public final String b;
|
|
private final String c;
|
|
|
|
public HBt(String str, String str2) {
|
|
C14957gcv.e(str, "");
|
|
C14957gcv.e(str2, "");
|
|
this.c = str;
|
|
this.b = str2;
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.c;
|
|
String str2 = this.b;
|
|
StringBuilder sb = new StringBuilder("Objective(sortSequence=");
|
|
sb.append(str);
|
|
sb.append(", label=");
|
|
sb.append(str2);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return (this.c.hashCode() * 31) + this.b.hashCode();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof HBt)) {
|
|
return false;
|
|
}
|
|
HBt hBt = (HBt) obj;
|
|
return C14957gcv.b((Object) this.c, (Object) hBt.c) && C14957gcv.b((Object) this.b, (Object) hBt.b);
|
|
}
|
|
}
|
|
|
|
public final String toString() {
|
|
List<HBt> list = this.a;
|
|
StringBuilder sb = new StringBuilder("InvestmentObjectives(objectives=");
|
|
sb.append(list);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return this.a.hashCode();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
return (obj instanceof LBA) && C14957gcv.b(this.a, ((LBA) obj).a);
|
|
}
|
|
}
|