what-the-bank/sources/o/EFI.java

34 lines
745 B
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package o;
/* loaded from: classes3.dex */
public final class EFI {
public final String b;
public EFI(String str) {
this.b = str;
}
public final String toString() {
String str = this.b;
StringBuilder sb = new StringBuilder("AccountNo(accountNo=");
sb.append(str);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
String str = this.b;
if (str == null) {
return 0;
}
return str.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
return (obj instanceof EFI) && C14957gcv.b((Object) this.b, (Object) ((EFI) obj).b);
}
}