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

44 lines
1.1 KiB
Java

package o;
import java.util.Map;
/* loaded from: classes3.dex */
public final class NE {
public final String c;
public final Map<String, String> d;
public NE(Map<String, String> map, String str) {
C14957gcv.e(map, "");
this.d = map;
this.c = str;
}
public final String toString() {
Map<String, String> map = this.d;
String str = this.c;
StringBuilder sb = new StringBuilder("HmlPersonalInfoOptionDisplay(options=");
sb.append(map);
sb.append(", code=");
sb.append(str);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
int hashCode = this.d.hashCode();
String str = this.c;
return (hashCode * 31) + (str == null ? 0 : str.hashCode());
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof NE)) {
return false;
}
NE ne = (NE) obj;
return C14957gcv.b(this.d, ne.d) && C14957gcv.b((Object) this.c, (Object) ne.c);
}
}