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

81 lines
2.3 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
import java.util.Comparator;
import java.util.List;
/* loaded from: classes3.dex */
public final class ROl {
@SerializedName("sortSequence")
public final Integer a;
@SerializedName("subHeader")
public final String b;
@SerializedName("header")
public final String d;
@SerializedName("body")
public final List<qpF> e;
/* loaded from: classes3.dex */
public static final class IeS<T> implements Comparator {
/* JADX WARN: Multi-variable type inference failed */
@Override // java.util.Comparator
public final int compare(T t, T t2) {
Integer num = ((qpF) t).e;
Integer num2 = ((qpF) t2).e;
if (num == num2) {
return 0;
}
if (num == null) {
return -1;
}
if (num2 == null) {
return 1;
}
return num.compareTo(num2);
}
}
public final String toString() {
Integer num = this.a;
String str = this.d;
String str2 = this.b;
List<qpF> list = this.e;
StringBuilder sb = new StringBuilder("EasycashLoanInfoItemEntity(sortSequence=");
sb.append(num);
sb.append(", header=");
sb.append(str);
sb.append(", subHeader=");
sb.append(str2);
sb.append(", body=");
sb.append(list);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
Integer num = this.a;
int hashCode = num == null ? 0 : num.hashCode();
String str = this.d;
int hashCode2 = str == null ? 0 : str.hashCode();
String str2 = this.b;
int hashCode3 = str2 == null ? 0 : str2.hashCode();
List<qpF> list = this.e;
return (((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + (list != null ? list.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof ROl)) {
return false;
}
ROl rOl = (ROl) obj;
return C14957gcv.b(this.a, rOl.a) && C14957gcv.b((Object) this.d, (Object) rOl.d) && C14957gcv.b((Object) this.b, (Object) rOl.b) && C14957gcv.b(this.e, rOl.e);
}
}