124 lines
3.7 KiB
Java
124 lines
3.7 KiB
Java
|
package o;
|
||
|
|
||
|
import android.os.Parcel;
|
||
|
import android.os.Parcelable;
|
||
|
import org.threeten.bp.OffsetDateTime;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class JA implements Parcelable {
|
||
|
public static final Parcelable.Creator<JA> CREATOR;
|
||
|
public final String a;
|
||
|
public final OffsetDateTime d;
|
||
|
public final OffsetDateTime e;
|
||
|
|
||
|
@Override // android.os.Parcelable
|
||
|
public final int describeContents() {
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
public JA(String str, OffsetDateTime offsetDateTime, OffsetDateTime offsetDateTime2) {
|
||
|
C14957gcv.e(str, "");
|
||
|
C14957gcv.e(offsetDateTime, "");
|
||
|
C14957gcv.e(offsetDateTime2, "");
|
||
|
this.a = str;
|
||
|
this.e = offsetDateTime;
|
||
|
this.d = offsetDateTime2;
|
||
|
}
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public static final class Sts {
|
||
|
private Sts() {
|
||
|
}
|
||
|
|
||
|
public /* synthetic */ Sts(byte b) {
|
||
|
this();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public static final class HBt implements Parcelable.Creator<JA> {
|
||
|
HBt() {
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable.Creator
|
||
|
public final /* synthetic */ JA createFromParcel(Parcel parcel) {
|
||
|
C14957gcv.e(parcel, "");
|
||
|
return new JA(parcel);
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable.Creator
|
||
|
public final /* bridge */ /* synthetic */ JA[] newArray(int i) {
|
||
|
return new JA[i];
|
||
|
}
|
||
|
}
|
||
|
|
||
|
static {
|
||
|
new Sts((byte) 0);
|
||
|
CREATOR = new HBt();
|
||
|
}
|
||
|
|
||
|
/* JADX WARN: Illegal instructions before constructor call */
|
||
|
/*
|
||
|
Code decompiled incorrectly, please refer to instructions dump.
|
||
|
To view partially-correct add '--show-bad-code' argument
|
||
|
*/
|
||
|
public JA(android.os.Parcel r4) {
|
||
|
/*
|
||
|
r3 = this;
|
||
|
java.lang.String r0 = ""
|
||
|
o.C14957gcv.e(r4, r0)
|
||
|
o.C14957gcv.e(r4, r0)
|
||
|
java.lang.String r1 = r4.readString()
|
||
|
if (r1 != 0) goto Lf
|
||
|
r1 = r0
|
||
|
Lf:
|
||
|
java.io.Serializable r2 = r4.readSerializable()
|
||
|
o.C14957gcv.d(r2, r0)
|
||
|
org.threeten.bp.OffsetDateTime r2 = (org.threeten.bp.OffsetDateTime) r2
|
||
|
java.io.Serializable r4 = r4.readSerializable()
|
||
|
o.C14957gcv.d(r4, r0)
|
||
|
org.threeten.bp.OffsetDateTime r4 = (org.threeten.bp.OffsetDateTime) r4
|
||
|
r3.<init>(r1, r2, r4)
|
||
|
return
|
||
|
*/
|
||
|
throw new UnsupportedOperationException("Method not decompiled: o.JA.<init>(android.os.Parcel):void");
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable
|
||
|
public final void writeToParcel(Parcel parcel, int i) {
|
||
|
C14957gcv.e(parcel, "");
|
||
|
parcel.writeString(this.a);
|
||
|
parcel.writeSerializable(this.e);
|
||
|
parcel.writeSerializable(this.d);
|
||
|
}
|
||
|
|
||
|
public final String toString() {
|
||
|
String str = this.a;
|
||
|
OffsetDateTime offsetDateTime = this.e;
|
||
|
OffsetDateTime offsetDateTime2 = this.d;
|
||
|
StringBuilder sb = new StringBuilder("StatementPreRequestDisplay(email=");
|
||
|
sb.append(str);
|
||
|
sb.append(", startDate=");
|
||
|
sb.append(offsetDateTime);
|
||
|
sb.append(", endDate=");
|
||
|
sb.append(offsetDateTime2);
|
||
|
sb.append(")");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
|
||
|
public final int hashCode() {
|
||
|
return (((this.a.hashCode() * 31) + this.e.hashCode()) * 31) + this.d.hashCode();
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (!(obj instanceof JA)) {
|
||
|
return false;
|
||
|
}
|
||
|
JA ja = (JA) obj;
|
||
|
return C14957gcv.b((Object) this.a, (Object) ja.a) && C14957gcv.b(this.e, ja.e) && C14957gcv.b(this.d, ja.d);
|
||
|
}
|
||
|
}
|