92 lines
2.7 KiB
Java
92 lines
2.7 KiB
Java
package o;
|
|
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class GS implements Parcelable {
|
|
public static final Parcelable.Creator<GS> CREATOR = new LWm();
|
|
public String a;
|
|
public String b;
|
|
public String d;
|
|
private boolean e;
|
|
|
|
@Override // android.os.Parcelable
|
|
public final int describeContents() {
|
|
return 0;
|
|
}
|
|
|
|
public GS(String str, String str2, boolean z, String str3) {
|
|
C14957gcv.e(str, "");
|
|
C14957gcv.e(str2, "");
|
|
C14957gcv.e(str3, "");
|
|
this.d = str;
|
|
this.b = str2;
|
|
this.e = z;
|
|
this.a = str3;
|
|
}
|
|
|
|
/* loaded from: classes3.dex */
|
|
public static final class LWm implements Parcelable.Creator<GS> {
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* synthetic */ GS createFromParcel(Parcel parcel) {
|
|
C14957gcv.e(parcel, "");
|
|
return new GS(parcel.readString(), parcel.readString(), parcel.readInt() != 0, parcel.readString());
|
|
}
|
|
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* bridge */ /* synthetic */ GS[] newArray(int i) {
|
|
return new GS[i];
|
|
}
|
|
}
|
|
|
|
@Override // android.os.Parcelable
|
|
public final void writeToParcel(Parcel parcel, int i) {
|
|
C14957gcv.e(parcel, "");
|
|
parcel.writeString(this.d);
|
|
parcel.writeString(this.b);
|
|
parcel.writeInt(this.e ? 1 : 0);
|
|
parcel.writeString(this.a);
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.d;
|
|
String str2 = this.b;
|
|
boolean z = this.e;
|
|
String str3 = this.a;
|
|
StringBuilder sb = new StringBuilder("StatementChannelItem(title=");
|
|
sb.append(str);
|
|
sb.append(", remark=");
|
|
sb.append(str2);
|
|
sb.append(", check=");
|
|
sb.append(z);
|
|
sb.append(", key=");
|
|
sb.append(str3);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
/* JADX WARN: Multi-variable type inference failed */
|
|
public final int hashCode() {
|
|
int hashCode = this.d.hashCode();
|
|
int hashCode2 = this.b.hashCode();
|
|
boolean z = this.e;
|
|
int i = z;
|
|
if (z != 0) {
|
|
i = 1;
|
|
}
|
|
return (((((hashCode * 31) + hashCode2) * 31) + i) * 31) + this.a.hashCode();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof GS)) {
|
|
return false;
|
|
}
|
|
GS gs = (GS) obj;
|
|
return C14957gcv.b((Object) this.d, (Object) gs.d) && C14957gcv.b((Object) this.b, (Object) gs.b) && this.e == gs.e && C14957gcv.b((Object) this.a, (Object) gs.a);
|
|
}
|
|
}
|