95 lines
2.8 KiB
Java
95 lines
2.8 KiB
Java
package o;
|
|
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class VA implements Parcelable {
|
|
public static final Parcelable.Creator<VA> CREATOR = new Sts();
|
|
public boolean b;
|
|
public final String c;
|
|
public final String e;
|
|
|
|
@Override // android.os.Parcelable
|
|
public final int describeContents() {
|
|
return 0;
|
|
}
|
|
|
|
public VA(boolean z, String str, String str2) {
|
|
this.b = z;
|
|
this.e = str;
|
|
this.c = str2;
|
|
}
|
|
|
|
/* loaded from: classes3.dex */
|
|
public static final class Sts implements Parcelable.Creator<VA> {
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* synthetic */ VA createFromParcel(Parcel parcel) {
|
|
C14957gcv.e(parcel, "");
|
|
return new VA(parcel.readInt() != 0, parcel.readString(), parcel.readString());
|
|
}
|
|
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* bridge */ /* synthetic */ VA[] newArray(int i) {
|
|
return new VA[i];
|
|
}
|
|
}
|
|
|
|
public static /* synthetic */ VA c(VA va, String str, String str2) {
|
|
return new VA(va.b, str, str2);
|
|
}
|
|
|
|
@Override // android.os.Parcelable
|
|
public final void writeToParcel(Parcel parcel, int i) {
|
|
C14957gcv.e(parcel, "");
|
|
parcel.writeInt(this.b ? 1 : 0);
|
|
parcel.writeString(this.e);
|
|
parcel.writeString(this.c);
|
|
}
|
|
|
|
public final String toString() {
|
|
boolean z = this.b;
|
|
String str = this.e;
|
|
String str2 = this.c;
|
|
StringBuilder sb = new StringBuilder("PhoneFieldDisplay(fieldFlag=");
|
|
sb.append(z);
|
|
sb.append(", defaultCountryCodeValue=");
|
|
sb.append(str);
|
|
sb.append(", defaultPhoneNumberValue=");
|
|
sb.append(str2);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
/* JADX WARN: Multi-variable type inference failed */
|
|
/* JADX WARN: Type inference failed for: r0v1, types: [int] */
|
|
/* JADX WARN: Type inference failed for: r0v6 */
|
|
/* JADX WARN: Type inference failed for: r0v7 */
|
|
public final int hashCode() {
|
|
boolean z = this.b;
|
|
?? r0 = z;
|
|
if (z) {
|
|
r0 = 1;
|
|
}
|
|
String str = this.e;
|
|
int hashCode = str == null ? 0 : str.hashCode();
|
|
String str2 = this.c;
|
|
return (((r0 * 31) + hashCode) * 31) + (str2 != null ? str2.hashCode() : 0);
|
|
}
|
|
|
|
public final boolean d() {
|
|
return this.b;
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof VA)) {
|
|
return false;
|
|
}
|
|
VA va = (VA) obj;
|
|
return this.b == va.b && C14957gcv.b((Object) this.e, (Object) va.e) && C14957gcv.b((Object) this.c, (Object) va.c);
|
|
}
|
|
}
|