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

60 lines
1.7 KiB
Java

package o;
/* loaded from: classes3.dex */
public final class BES {
public final String a;
public final String c;
public final String d;
public final String e;
public /* synthetic */ BES(String str) {
this(str, null, null, null);
}
public BES(String str, String str2, String str3, String str4) {
C14957gcv.e(str, "");
this.c = str;
this.a = str2;
this.d = str3;
this.e = str4;
}
public final String toString() {
String str = this.c;
String str2 = this.a;
String str3 = this.d;
String str4 = this.e;
StringBuilder sb = new StringBuilder("ProcessedImage(path=");
sb.append(str);
sb.append(", creationDate=");
sb.append(str2);
sb.append(", latitude=");
sb.append(str3);
sb.append(", longitude=");
sb.append(str4);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
int hashCode = this.c.hashCode();
String str = this.a;
int hashCode2 = str == null ? 0 : str.hashCode();
String str2 = this.d;
int hashCode3 = str2 == null ? 0 : str2.hashCode();
String str3 = this.e;
return (((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + (str3 != null ? str3.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof BES)) {
return false;
}
BES bes = (BES) obj;
return C14957gcv.b((Object) this.c, (Object) bes.c) && C14957gcv.b((Object) this.a, (Object) bes.a) && C14957gcv.b((Object) this.d, (Object) bes.d) && C14957gcv.b((Object) this.e, (Object) bes.e);
}
}