46 lines
1.2 KiB
Java
46 lines
1.2 KiB
Java
package o;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class MEd {
|
|
public final String a;
|
|
public final int c;
|
|
public final String e;
|
|
|
|
public MEd(int i, String str, String str2) {
|
|
C14957gcv.e(str, "");
|
|
C14957gcv.e(str2, "");
|
|
this.c = i;
|
|
this.e = str;
|
|
this.a = str2;
|
|
}
|
|
|
|
public final String toString() {
|
|
int i = this.c;
|
|
String str = this.e;
|
|
String str2 = this.a;
|
|
StringBuilder sb = new StringBuilder("SCBSRiskLevelItem(sortSequence=");
|
|
sb.append(i);
|
|
sb.append(", code=");
|
|
sb.append(str);
|
|
sb.append(", label=");
|
|
sb.append(str2);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return (((Integer.hashCode(this.c) * 31) + this.e.hashCode()) * 31) + this.a.hashCode();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof MEd)) {
|
|
return false;
|
|
}
|
|
MEd mEd = (MEd) obj;
|
|
return this.c == mEd.c && C14957gcv.b((Object) this.e, (Object) mEd.e) && C14957gcv.b((Object) this.a, (Object) mEd.a);
|
|
}
|
|
}
|