98 lines
3.0 KiB
Java
98 lines
3.0 KiB
Java
package o;
|
|
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
import java.util.List;
|
|
|
|
/* renamed from: o.Vu, reason: case insensitive filesystem */
|
|
/* loaded from: classes3.dex */
|
|
public final class C1108Vu implements Parcelable {
|
|
public static final Parcelable.Creator<C1108Vu> CREATOR = new RVV();
|
|
public final String a;
|
|
public final List<String> d;
|
|
public final boolean e;
|
|
|
|
@Override // android.os.Parcelable
|
|
public final int describeContents() {
|
|
return 0;
|
|
}
|
|
|
|
public C1108Vu(boolean z, List<String> list, String str) {
|
|
this.e = z;
|
|
this.d = list;
|
|
this.a = str;
|
|
}
|
|
|
|
/* renamed from: o.Vu$RVV */
|
|
/* loaded from: classes3.dex */
|
|
public static final class RVV implements Parcelable.Creator<C1108Vu> {
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* synthetic */ C1108Vu createFromParcel(Parcel parcel) {
|
|
C14957gcv.e(parcel, "");
|
|
return new C1108Vu(parcel.readInt() != 0, parcel.createStringArrayList(), parcel.readString());
|
|
}
|
|
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* bridge */ /* synthetic */ C1108Vu[] newArray(int i) {
|
|
return new C1108Vu[i];
|
|
}
|
|
}
|
|
|
|
public static /* synthetic */ C1108Vu e(C1108Vu c1108Vu, String str) {
|
|
return new C1108Vu(c1108Vu.e, c1108Vu.d, str);
|
|
}
|
|
|
|
@Override // android.os.Parcelable
|
|
public final void writeToParcel(Parcel parcel, int i) {
|
|
C14957gcv.e(parcel, "");
|
|
parcel.writeInt(this.e ? 1 : 0);
|
|
parcel.writeStringList(this.d);
|
|
parcel.writeString(this.a);
|
|
}
|
|
|
|
public final String toString() {
|
|
boolean z = this.e;
|
|
List<String> list = this.d;
|
|
String str = this.a;
|
|
StringBuilder sb = new StringBuilder("FieldListDisplay(fieldFlag=");
|
|
sb.append(z);
|
|
sb.append(", listOfValue=");
|
|
sb.append(list);
|
|
sb.append(", defaultValue=");
|
|
sb.append(str);
|
|
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.e;
|
|
?? r0 = z;
|
|
if (z) {
|
|
r0 = 1;
|
|
}
|
|
List<String> list = this.d;
|
|
int hashCode = list == null ? 0 : list.hashCode();
|
|
String str = this.a;
|
|
return (((r0 * 31) + hashCode) * 31) + (str != null ? str.hashCode() : 0);
|
|
}
|
|
|
|
public final List<String> c() {
|
|
return this.d;
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof C1108Vu)) {
|
|
return false;
|
|
}
|
|
C1108Vu c1108Vu = (C1108Vu) obj;
|
|
return this.e == c1108Vu.e && C14957gcv.b(this.d, c1108Vu.d) && C14957gcv.b((Object) this.a, (Object) c1108Vu.a);
|
|
}
|
|
}
|