110 lines
3.6 KiB
Java
110 lines
3.6 KiB
Java
package o;
|
|
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class QT implements Parcelable {
|
|
public static final Parcelable.Creator<QT> CREATOR = new LWm();
|
|
private final int a;
|
|
private final String b;
|
|
public final String c;
|
|
private final String d;
|
|
public final String e;
|
|
private final int f;
|
|
private final int g;
|
|
private final String i;
|
|
|
|
@Override // android.os.Parcelable
|
|
public final int describeContents() {
|
|
return 0;
|
|
}
|
|
|
|
public QT(int i, String str, String str2, String str3, String str4, int i2, String str5, int i3) {
|
|
C14957gcv.e(str, "");
|
|
C14957gcv.e(str2, "");
|
|
C14957gcv.e(str3, "");
|
|
C14957gcv.e(str4, "");
|
|
C14957gcv.e(str5, "");
|
|
this.f = i;
|
|
this.c = str;
|
|
this.b = str2;
|
|
this.d = str3;
|
|
this.i = str4;
|
|
this.a = i2;
|
|
this.e = str5;
|
|
this.g = i3;
|
|
}
|
|
|
|
/* loaded from: classes3.dex */
|
|
public static final class LWm implements Parcelable.Creator<QT> {
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* synthetic */ QT createFromParcel(Parcel parcel) {
|
|
C14957gcv.e(parcel, "");
|
|
return new QT(parcel.readInt(), parcel.readString(), parcel.readString(), parcel.readString(), parcel.readString(), parcel.readInt(), parcel.readString(), parcel.readInt());
|
|
}
|
|
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* bridge */ /* synthetic */ QT[] newArray(int i) {
|
|
return new QT[i];
|
|
}
|
|
}
|
|
|
|
@Override // android.os.Parcelable
|
|
public final void writeToParcel(Parcel parcel, int i) {
|
|
C14957gcv.e(parcel, "");
|
|
parcel.writeInt(this.f);
|
|
parcel.writeString(this.c);
|
|
parcel.writeString(this.b);
|
|
parcel.writeString(this.d);
|
|
parcel.writeString(this.i);
|
|
parcel.writeInt(this.a);
|
|
parcel.writeString(this.e);
|
|
parcel.writeInt(this.g);
|
|
}
|
|
|
|
public final String toString() {
|
|
int i = this.f;
|
|
String str = this.c;
|
|
String str2 = this.b;
|
|
String str3 = this.d;
|
|
String str4 = this.i;
|
|
int i2 = this.a;
|
|
String str5 = this.e;
|
|
int i3 = this.g;
|
|
StringBuilder sb = new StringBuilder("InsightListDisplay(sortSequence=");
|
|
sb.append(i);
|
|
sb.append(", id=");
|
|
sb.append(str);
|
|
sb.append(", insightId=");
|
|
sb.append(str2);
|
|
sb.append(", fromDate=");
|
|
sb.append(str3);
|
|
sb.append(", toDate=");
|
|
sb.append(str4);
|
|
sb.append(", displayDuration=");
|
|
sb.append(i2);
|
|
sb.append(", bubbleText=");
|
|
sb.append(str5);
|
|
sb.append(", todayFlag=");
|
|
sb.append(i3);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return (((((((((((((Integer.hashCode(this.f) * 31) + this.c.hashCode()) * 31) + this.b.hashCode()) * 31) + this.d.hashCode()) * 31) + this.i.hashCode()) * 31) + Integer.hashCode(this.a)) * 31) + this.e.hashCode()) * 31) + Integer.hashCode(this.g);
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof QT)) {
|
|
return false;
|
|
}
|
|
QT qt = (QT) obj;
|
|
return this.f == qt.f && C14957gcv.b((Object) this.c, (Object) qt.c) && C14957gcv.b((Object) this.b, (Object) qt.b) && C14957gcv.b((Object) this.d, (Object) qt.d) && C14957gcv.b((Object) this.i, (Object) qt.i) && this.a == qt.a && C14957gcv.b((Object) this.e, (Object) qt.e) && this.g == qt.g;
|
|
}
|
|
}
|