41 lines
1.0 KiB
Java
41 lines
1.0 KiB
Java
package o;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class eBF {
|
|
public final String d;
|
|
public final String e;
|
|
|
|
public eBF(String str, String str2) {
|
|
C14957gcv.e(str, "");
|
|
C14957gcv.e(str2, "");
|
|
this.d = str;
|
|
this.e = str2;
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.d;
|
|
String str2 = this.e;
|
|
StringBuilder sb = new StringBuilder("SalaryRange(salaryRangeCode=");
|
|
sb.append(str);
|
|
sb.append(", salaryRangeDescription=");
|
|
sb.append(str2);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return (this.d.hashCode() * 31) + this.e.hashCode();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof eBF)) {
|
|
return false;
|
|
}
|
|
eBF ebf = (eBF) obj;
|
|
return C14957gcv.b((Object) this.d, (Object) ebf.d) && C14957gcv.b((Object) this.e, (Object) ebf.e);
|
|
}
|
|
}
|