discord-jadx/app/src/main/java/c/a/y/b0.java

95 lines
2.9 KiB
Java

package c.a.y;
import c.d.b.a.a;
import d0.z.d.m;
import java.io.Serializable;
/* compiled from: SelectorBottomSheet.kt */
public final class b0 implements Serializable {
private final CharSequence description;
private final String iconUri;
private final String title;
private final Integer titleEndIcon;
private final Integer titleTextColor;
public b0() {
this(null, null, null, null, null, 31);
}
public b0(String str, CharSequence charSequence, String str2, Integer num, Integer num2, int i) {
str = (i & 1) != 0 ? null : str;
charSequence = (i & 2) != 0 ? null : charSequence;
str2 = (i & 4) != 0 ? null : str2;
num = (i & 8) != 0 ? null : num;
num2 = (i & 16) != 0 ? null : num2;
this.title = str;
this.description = charSequence;
this.iconUri = str2;
this.titleTextColor = num;
this.titleEndIcon = num2;
}
public final CharSequence a() {
return this.description;
}
public final String b() {
return this.iconUri;
}
public final String c() {
return this.title;
}
public final Integer d() {
return this.titleEndIcon;
}
public final Integer e() {
return this.titleTextColor;
}
@Override // java.lang.Object
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof b0)) {
return false;
}
b0 b0Var = (b0) obj;
return m.areEqual(this.title, b0Var.title) && m.areEqual(this.description, b0Var.description) && m.areEqual(this.iconUri, b0Var.iconUri) && m.areEqual(this.titleTextColor, b0Var.titleTextColor) && m.areEqual(this.titleEndIcon, b0Var.titleEndIcon);
}
@Override // java.lang.Object
public int hashCode() {
String str = this.title;
int i = 0;
int hashCode = (str != null ? str.hashCode() : 0) * 31;
CharSequence charSequence = this.description;
int hashCode2 = (hashCode + (charSequence != null ? charSequence.hashCode() : 0)) * 31;
String str2 = this.iconUri;
int hashCode3 = (hashCode2 + (str2 != null ? str2.hashCode() : 0)) * 31;
Integer num = this.titleTextColor;
int hashCode4 = (hashCode3 + (num != null ? num.hashCode() : 0)) * 31;
Integer num2 = this.titleEndIcon;
if (num2 != null) {
i = num2.hashCode();
}
return hashCode4 + i;
}
@Override // java.lang.Object
public String toString() {
StringBuilder K = a.K("SimpleBottomSheetItem(title=");
K.append(this.title);
K.append(", description=");
K.append(this.description);
K.append(", iconUri=");
K.append(this.iconUri);
K.append(", titleTextColor=");
K.append(this.titleTextColor);
K.append(", titleEndIcon=");
return a.z(K, this.titleEndIcon, ")");
}
}