31 lines
680 B
Java
31 lines
680 B
Java
|
package o;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class QF extends QB {
|
||
|
public final int d;
|
||
|
|
||
|
public QF(int i) {
|
||
|
super((byte) 0);
|
||
|
this.d = i;
|
||
|
}
|
||
|
|
||
|
public final String toString() {
|
||
|
int i = this.d;
|
||
|
StringBuilder sb = new StringBuilder("SuitabilitySummarySectionDisplay(sectionNumber=");
|
||
|
sb.append(i);
|
||
|
sb.append(")");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
|
||
|
public final int hashCode() {
|
||
|
return Integer.hashCode(this.d);
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
return (obj instanceof QF) && this.d == ((QF) obj).d;
|
||
|
}
|
||
|
}
|