109 lines
3.1 KiB
Java
109 lines
3.1 KiB
Java
|
package o;
|
||
|
|
||
|
import android.os.Parcel;
|
||
|
import android.os.Parcelable;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class FO extends EQ implements Parcelable {
|
||
|
public static final Parcelable.Creator<FO> CREATOR = new Parcelable.Creator<FO>() { // from class: o.FO.1
|
||
|
@Override // android.os.Parcelable.Creator
|
||
|
public final /* synthetic */ FO createFromParcel(Parcel parcel) {
|
||
|
return new FO(parcel);
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable.Creator
|
||
|
public final /* bridge */ /* synthetic */ FO[] newArray(int i) {
|
||
|
return new FO[i];
|
||
|
}
|
||
|
};
|
||
|
public String a;
|
||
|
public int b;
|
||
|
public String c;
|
||
|
public String d;
|
||
|
public String g;
|
||
|
|
||
|
@Override // o.EQ, android.os.Parcelable
|
||
|
public final int describeContents() {
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
protected FO(Parcel parcel) {
|
||
|
this.b = parcel.readInt();
|
||
|
this.c = parcel.readString();
|
||
|
this.a = parcel.readString();
|
||
|
this.d = parcel.readString();
|
||
|
this.g = parcel.readString();
|
||
|
}
|
||
|
|
||
|
@Override // o.EQ, android.os.Parcelable
|
||
|
public final void writeToParcel(Parcel parcel, int i) {
|
||
|
parcel.writeInt(this.b);
|
||
|
parcel.writeString(this.c);
|
||
|
parcel.writeString(this.a);
|
||
|
parcel.writeString(this.d);
|
||
|
parcel.writeString(this.g);
|
||
|
}
|
||
|
|
||
|
public FO() {
|
||
|
}
|
||
|
|
||
|
public static FO c() {
|
||
|
return new FO();
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (obj == null || getClass() != obj.getClass()) {
|
||
|
return false;
|
||
|
}
|
||
|
FO fo = (FO) obj;
|
||
|
if (this.b != fo.b) {
|
||
|
return false;
|
||
|
}
|
||
|
String str = this.c;
|
||
|
if (str == null ? fo.c != null : !str.equals(fo.c)) {
|
||
|
return false;
|
||
|
}
|
||
|
String str2 = this.a;
|
||
|
if (str2 == null ? fo.a != null : !str2.equals(fo.a)) {
|
||
|
return false;
|
||
|
}
|
||
|
String str3 = this.d;
|
||
|
if (str3 == null ? fo.d != null : !str3.equals(fo.d)) {
|
||
|
return false;
|
||
|
}
|
||
|
String str4 = this.g;
|
||
|
String str5 = fo.g;
|
||
|
return str4 != null ? str4.equals(str5) : str5 == null;
|
||
|
}
|
||
|
|
||
|
public final int hashCode() {
|
||
|
int i = this.b;
|
||
|
String str = this.c;
|
||
|
int hashCode = str != null ? str.hashCode() : 0;
|
||
|
String str2 = this.a;
|
||
|
int hashCode2 = str2 != null ? str2.hashCode() : 0;
|
||
|
String str3 = this.d;
|
||
|
int hashCode3 = str3 != null ? str3.hashCode() : 0;
|
||
|
String str4 = this.g;
|
||
|
return (((((((i * 31) + hashCode) * 31) + hashCode2) * 31) + hashCode3) * 31) + (str4 != null ? str4.hashCode() : 0);
|
||
|
}
|
||
|
|
||
|
public final String toString() {
|
||
|
StringBuilder sb = new StringBuilder("BulkTransferGroupDisplay{sortSequence=");
|
||
|
sb.append(this.b);
|
||
|
sb.append(", groupId='");
|
||
|
sb.append(this.c);
|
||
|
sb.append("', groupName='");
|
||
|
sb.append(this.a);
|
||
|
sb.append("', noOfRecipients='");
|
||
|
sb.append(this.d);
|
||
|
sb.append("', totalAmount='");
|
||
|
sb.append(this.g);
|
||
|
sb.append("'}");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
}
|