43 lines
1.1 KiB
Java
43 lines
1.1 KiB
Java
|
package o;
|
||
|
|
||
|
/* renamed from: o.Ij, reason: case insensitive filesystem */
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class C0513Ij<T> {
|
||
|
public final String b;
|
||
|
public final T d;
|
||
|
|
||
|
public C0513Ij(String str, T t) {
|
||
|
C14957gcv.e(str, "");
|
||
|
this.b = str;
|
||
|
this.d = t;
|
||
|
}
|
||
|
|
||
|
public final String toString() {
|
||
|
String str = this.b;
|
||
|
T t = this.d;
|
||
|
StringBuilder sb = new StringBuilder("ChoiceDisplay(label=");
|
||
|
sb.append(str);
|
||
|
sb.append(", value=");
|
||
|
sb.append(t);
|
||
|
sb.append(")");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
|
||
|
public final int hashCode() {
|
||
|
int hashCode = this.b.hashCode();
|
||
|
T t = this.d;
|
||
|
return (hashCode * 31) + (t == null ? 0 : t.hashCode());
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (!(obj instanceof C0513Ij)) {
|
||
|
return false;
|
||
|
}
|
||
|
C0513Ij c0513Ij = (C0513Ij) obj;
|
||
|
return C14957gcv.b((Object) this.b, (Object) c0513Ij.b) && C14957gcv.b(this.d, c0513Ij.d);
|
||
|
}
|
||
|
}
|