40 lines
983 B
Java
40 lines
983 B
Java
|
package o;
|
||
|
|
||
|
/* renamed from: o.gaK, reason: case insensitive filesystem */
|
||
|
/* loaded from: classes6.dex */
|
||
|
public final class C14852gaK<T> {
|
||
|
public final int d;
|
||
|
public final T e;
|
||
|
|
||
|
public C14852gaK(int i, T t) {
|
||
|
this.d = i;
|
||
|
this.e = t;
|
||
|
}
|
||
|
|
||
|
public final String toString() {
|
||
|
StringBuilder sb = new StringBuilder("IndexedValue(index=");
|
||
|
sb.append(this.d);
|
||
|
sb.append(", value=");
|
||
|
sb.append(this.e);
|
||
|
sb.append(')');
|
||
|
return sb.toString();
|
||
|
}
|
||
|
|
||
|
public final int hashCode() {
|
||
|
int i = this.d;
|
||
|
T t = this.e;
|
||
|
return (i * 31) + (t == null ? 0 : t.hashCode());
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (!(obj instanceof C14852gaK)) {
|
||
|
return false;
|
||
|
}
|
||
|
C14852gaK c14852gaK = (C14852gaK) obj;
|
||
|
return this.d == c14852gaK.d && C14957gcv.b(this.e, c14852gaK.e);
|
||
|
}
|
||
|
}
|