71 lines
1.9 KiB
Java
71 lines
1.9 KiB
Java
package o;
|
|
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class IB implements Parcelable {
|
|
public static final Parcelable.Creator<IB> CREATOR = new RVV();
|
|
public String b;
|
|
public String e;
|
|
|
|
@Override // android.os.Parcelable
|
|
public final int describeContents() {
|
|
return 0;
|
|
}
|
|
|
|
public IB(String str, String str2) {
|
|
C14957gcv.e(str, "");
|
|
C14957gcv.e(str2, "");
|
|
this.b = str;
|
|
this.e = str2;
|
|
}
|
|
|
|
/* loaded from: classes3.dex */
|
|
public static final class RVV implements Parcelable.Creator<IB> {
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* synthetic */ IB createFromParcel(Parcel parcel) {
|
|
C14957gcv.e(parcel, "");
|
|
return new IB(parcel.readString(), parcel.readString());
|
|
}
|
|
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* bridge */ /* synthetic */ IB[] newArray(int i) {
|
|
return new IB[i];
|
|
}
|
|
}
|
|
|
|
@Override // android.os.Parcelable
|
|
public final void writeToParcel(Parcel parcel, int i) {
|
|
C14957gcv.e(parcel, "");
|
|
parcel.writeString(this.b);
|
|
parcel.writeString(this.e);
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.b;
|
|
String str2 = this.e;
|
|
StringBuilder sb = new StringBuilder("RemarkDisplay(header=");
|
|
sb.append(str);
|
|
sb.append(", description=");
|
|
sb.append(str2);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return (this.b.hashCode() * 31) + this.e.hashCode();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof IB)) {
|
|
return false;
|
|
}
|
|
IB ib = (IB) obj;
|
|
return C14957gcv.b((Object) this.b, (Object) ib.b) && C14957gcv.b((Object) this.e, (Object) ib.e);
|
|
}
|
|
}
|