what-the-bank/sources/o/Wko.java

77 lines
2.4 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
import java.util.List;
import org.simpleframework.xml.strategy.Name;
/* loaded from: classes3.dex */
public final class Wko {
@SerializedName(Name.LENGTH)
public final List<String> a;
@SerializedName("label")
public final String b;
@SerializedName("lovFlag")
public final String c;
@SerializedName("fieldFlag")
public final String d;
@SerializedName("maxLength")
public final String e;
@SerializedName("placeholder")
public final String h;
public final String toString() {
String str = this.d;
String str2 = this.b;
List<String> list = this.a;
String str3 = this.h;
String str4 = this.c;
String str5 = this.e;
StringBuilder sb = new StringBuilder("FieldEntity(fieldFlag=");
sb.append(str);
sb.append(", label=");
sb.append(str2);
sb.append(", length=");
sb.append(list);
sb.append(", placeholder=");
sb.append(str3);
sb.append(", lovFlag=");
sb.append(str4);
sb.append(", maxLength=");
sb.append(str5);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
String str = this.d;
int hashCode = str == null ? 0 : str.hashCode();
String str2 = this.b;
int hashCode2 = str2 == null ? 0 : str2.hashCode();
List<String> list = this.a;
int hashCode3 = list == null ? 0 : list.hashCode();
String str3 = this.h;
int hashCode4 = str3 == null ? 0 : str3.hashCode();
String str4 = this.c;
int hashCode5 = str4 == null ? 0 : str4.hashCode();
String str5 = this.e;
return (((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + (str5 != null ? str5.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof Wko)) {
return false;
}
Wko wko = (Wko) obj;
return C14957gcv.b((Object) this.d, (Object) wko.d) && C14957gcv.b((Object) this.b, (Object) wko.b) && C14957gcv.b(this.a, wko.a) && C14957gcv.b((Object) this.h, (Object) wko.h) && C14957gcv.b((Object) this.c, (Object) wko.c) && C14957gcv.b((Object) this.e, (Object) wko.e);
}
}