49 lines
1.4 KiB
Java
49 lines
1.4 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
import org.bouncycastle.i18n.MessageBundle;
|
|
|
|
/* renamed from: o.eav, reason: case insensitive filesystem */
|
|
/* loaded from: classes3.dex */
|
|
public class C11206eav {
|
|
|
|
@SerializedName(MessageBundle.TITLE_ENTRY)
|
|
public String a;
|
|
|
|
@SerializedName("lastname")
|
|
public String b;
|
|
|
|
@SerializedName("firstname")
|
|
public String e;
|
|
|
|
public boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (obj == null || getClass() != obj.getClass()) {
|
|
return false;
|
|
}
|
|
C11206eav c11206eav = (C11206eav) obj;
|
|
String str = this.a;
|
|
if (str == null ? c11206eav.a != null : !str.equals(c11206eav.a)) {
|
|
return false;
|
|
}
|
|
String str2 = this.e;
|
|
if (str2 == null ? c11206eav.e != null : !str2.equals(c11206eav.e)) {
|
|
return false;
|
|
}
|
|
String str3 = this.b;
|
|
String str4 = c11206eav.b;
|
|
return str3 != null ? str3.equals(str4) : str4 == null;
|
|
}
|
|
|
|
public int hashCode() {
|
|
String str = this.a;
|
|
int hashCode = str != null ? str.hashCode() : 0;
|
|
String str2 = this.e;
|
|
int hashCode2 = str2 != null ? str2.hashCode() : 0;
|
|
String str3 = this.b;
|
|
return (((hashCode * 31) + hashCode2) * 31) + (str3 != null ? str3.hashCode() : 0);
|
|
}
|
|
}
|