111 lines
3.1 KiB
Java
111 lines
3.1 KiB
Java
package o;
|
|
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
|
|
/* renamed from: o.Gz, reason: case insensitive filesystem */
|
|
/* loaded from: classes3.dex */
|
|
public final class C0456Gz implements Parcelable {
|
|
public static final Parcelable.Creator<C0456Gz> CREATOR;
|
|
public final String a;
|
|
public final String b;
|
|
public final String c;
|
|
|
|
@Override // android.os.Parcelable
|
|
public final int describeContents() {
|
|
return 0;
|
|
}
|
|
|
|
public /* synthetic */ C0456Gz(String str, String str2) {
|
|
this(str, str2, null);
|
|
}
|
|
|
|
public C0456Gz(String str, String str2, String str3) {
|
|
this.c = str;
|
|
this.b = str2;
|
|
this.a = str3;
|
|
}
|
|
|
|
/* renamed from: o.Gz$IeS */
|
|
/* loaded from: classes3.dex */
|
|
public static final class IeS {
|
|
private IeS() {
|
|
}
|
|
|
|
public /* synthetic */ IeS(byte b) {
|
|
this();
|
|
}
|
|
}
|
|
|
|
/* renamed from: o.Gz$RVV */
|
|
/* loaded from: classes3.dex */
|
|
public static final class RVV implements Parcelable.Creator<C0456Gz> {
|
|
RVV() {
|
|
}
|
|
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* synthetic */ C0456Gz createFromParcel(Parcel parcel) {
|
|
C14957gcv.e(parcel, "");
|
|
return new C0456Gz(parcel);
|
|
}
|
|
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* bridge */ /* synthetic */ C0456Gz[] newArray(int i) {
|
|
return new C0456Gz[i];
|
|
}
|
|
}
|
|
|
|
static {
|
|
new IeS((byte) 0);
|
|
CREATOR = new RVV();
|
|
}
|
|
|
|
/* JADX WARN: 'this' call moved to the top of the method (can break code semantics) */
|
|
public C0456Gz(Parcel parcel) {
|
|
this(parcel.readString(), parcel.readString(), parcel.readString());
|
|
C14957gcv.e(parcel, "");
|
|
}
|
|
|
|
@Override // android.os.Parcelable
|
|
public final void writeToParcel(Parcel parcel, int i) {
|
|
C14957gcv.e(parcel, "");
|
|
parcel.writeString(this.c);
|
|
parcel.writeString(this.b);
|
|
parcel.writeString(this.a);
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.c;
|
|
String str2 = this.b;
|
|
String str3 = this.a;
|
|
StringBuilder sb = new StringBuilder("StatusResponseDisplay(code=");
|
|
sb.append(str);
|
|
sb.append(", description=");
|
|
sb.append(str2);
|
|
sb.append(", header=");
|
|
sb.append(str3);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
String str = this.c;
|
|
int hashCode = str == null ? 0 : str.hashCode();
|
|
String str2 = this.b;
|
|
int hashCode2 = str2 == null ? 0 : str2.hashCode();
|
|
String str3 = this.a;
|
|
return (((hashCode * 31) + hashCode2) * 31) + (str3 != null ? str3.hashCode() : 0);
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof C0456Gz)) {
|
|
return false;
|
|
}
|
|
C0456Gz c0456Gz = (C0456Gz) obj;
|
|
return C14957gcv.b((Object) this.c, (Object) c0456Gz.c) && C14957gcv.b((Object) this.b, (Object) c0456Gz.b) && C14957gcv.b((Object) this.a, (Object) c0456Gz.a);
|
|
}
|
|
}
|