45 lines
1.2 KiB
Java
45 lines
1.2 KiB
Java
|
package o;
|
||
|
|
||
|
import o.WS;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class WV extends WS {
|
||
|
public final String a;
|
||
|
public final String e;
|
||
|
|
||
|
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
|
||
|
public WV(String str, String str2) {
|
||
|
super(WS.IeS.TITLE);
|
||
|
C14957gcv.e(str, "");
|
||
|
C14957gcv.e(str2, "");
|
||
|
this.a = str;
|
||
|
this.e = str2;
|
||
|
}
|
||
|
|
||
|
public final String toString() {
|
||
|
String str = this.a;
|
||
|
String str2 = this.e;
|
||
|
StringBuilder sb = new StringBuilder("ProductCatalogueTitleDisplay(titleColumn=");
|
||
|
sb.append(str);
|
||
|
sb.append(", valueColumn=");
|
||
|
sb.append(str2);
|
||
|
sb.append(")");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
|
||
|
public final int hashCode() {
|
||
|
return (this.a.hashCode() * 31) + this.e.hashCode();
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (!(obj instanceof WV)) {
|
||
|
return false;
|
||
|
}
|
||
|
WV wv = (WV) obj;
|
||
|
return C14957gcv.b((Object) this.a, (Object) wv.a) && C14957gcv.b((Object) this.e, (Object) wv.e);
|
||
|
}
|
||
|
}
|