49 lines
1.3 KiB
Java
49 lines
1.3 KiB
Java
package o;
|
|
|
|
import java.io.Serializable;
|
|
|
|
/* renamed from: o.gaa, reason: case insensitive filesystem */
|
|
/* loaded from: classes6.dex */
|
|
public final class C14860gaa<A, B, C> implements Serializable {
|
|
public final B b;
|
|
public final A c;
|
|
public final C e;
|
|
|
|
public C14860gaa(A a, B b, C c) {
|
|
this.c = a;
|
|
this.b = b;
|
|
this.e = c;
|
|
}
|
|
|
|
public final String toString() {
|
|
StringBuilder sb = new StringBuilder("(");
|
|
sb.append(this.c);
|
|
sb.append(", ");
|
|
sb.append(this.b);
|
|
sb.append(", ");
|
|
sb.append(this.e);
|
|
sb.append(')');
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
A a = this.c;
|
|
int hashCode = a == null ? 0 : a.hashCode();
|
|
B b = this.b;
|
|
int hashCode2 = b == null ? 0 : b.hashCode();
|
|
C c = this.e;
|
|
return (((hashCode * 31) + hashCode2) * 31) + (c != null ? c.hashCode() : 0);
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof C14860gaa)) {
|
|
return false;
|
|
}
|
|
C14860gaa c14860gaa = (C14860gaa) obj;
|
|
return C14957gcv.b(this.c, c14860gaa.c) && C14957gcv.b(this.b, c14860gaa.b) && C14957gcv.b(this.e, c14860gaa.e);
|
|
}
|
|
}
|