88 lines
2.8 KiB
Java
88 lines
2.8 KiB
Java
package o;
|
|
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class QZ implements Parcelable {
|
|
public static final Parcelable.Creator<QZ> CREATOR = new IeS();
|
|
private final String a;
|
|
private final String c;
|
|
private final String d;
|
|
private final String e;
|
|
|
|
@Override // android.os.Parcelable
|
|
public final int describeContents() {
|
|
return 0;
|
|
}
|
|
|
|
public QZ(String str, String str2, String str3, String str4) {
|
|
this.c = str;
|
|
this.e = str2;
|
|
this.d = str3;
|
|
this.a = str4;
|
|
}
|
|
|
|
/* loaded from: classes3.dex */
|
|
public static final class IeS implements Parcelable.Creator<QZ> {
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* synthetic */ QZ createFromParcel(Parcel parcel) {
|
|
C14957gcv.e(parcel, "");
|
|
return new QZ(parcel.readString(), parcel.readString(), parcel.readString(), parcel.readString());
|
|
}
|
|
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* bridge */ /* synthetic */ QZ[] newArray(int i) {
|
|
return new QZ[i];
|
|
}
|
|
}
|
|
|
|
@Override // android.os.Parcelable
|
|
public final void writeToParcel(Parcel parcel, int i) {
|
|
C14957gcv.e(parcel, "");
|
|
parcel.writeString(this.c);
|
|
parcel.writeString(this.e);
|
|
parcel.writeString(this.d);
|
|
parcel.writeString(this.a);
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.c;
|
|
String str2 = this.e;
|
|
String str3 = this.d;
|
|
String str4 = this.a;
|
|
StringBuilder sb = new StringBuilder("JustForYouContextualMetadataDisplay(header=");
|
|
sb.append(str);
|
|
sb.append(", description=");
|
|
sb.append(str2);
|
|
sb.append(", buttonText=");
|
|
sb.append(str3);
|
|
sb.append(", formatType=");
|
|
sb.append(str4);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
String str = this.c;
|
|
int hashCode = str == null ? 0 : str.hashCode();
|
|
String str2 = this.e;
|
|
int hashCode2 = str2 == null ? 0 : str2.hashCode();
|
|
String str3 = this.d;
|
|
int hashCode3 = str3 == null ? 0 : str3.hashCode();
|
|
String str4 = this.a;
|
|
return (((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + (str4 != null ? str4.hashCode() : 0);
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof QZ)) {
|
|
return false;
|
|
}
|
|
QZ qz = (QZ) obj;
|
|
return C14957gcv.b((Object) this.c, (Object) qz.c) && C14957gcv.b((Object) this.e, (Object) qz.e) && C14957gcv.b((Object) this.d, (Object) qz.d) && C14957gcv.b((Object) this.a, (Object) qz.a);
|
|
}
|
|
}
|