discord-jadx/app/src/main/java/com/discord/widgets/chat/input/emoji/EmojiPickerContextType.java

82 lines
2.2 KiB
Java

package com.discord.widgets.chat.input.emoji;
import a0.a.a.b;
import c.d.b.a.a;
import java.io.Serializable;
import kotlin.jvm.internal.DefaultConstructorMarker;
/* compiled from: EmojiPickerContextType.kt */
public abstract class EmojiPickerContextType implements Serializable {
/* compiled from: EmojiPickerContextType.kt */
public static final class Chat extends EmojiPickerContextType {
public static final Chat INSTANCE = new Chat();
private Chat() {
super(null);
}
}
/* compiled from: EmojiPickerContextType.kt */
public static final class Global extends EmojiPickerContextType {
public static final Global INSTANCE = new Global();
private Global() {
super(null);
}
}
/* compiled from: EmojiPickerContextType.kt */
public static final class Guild extends EmojiPickerContextType {
private final long guildId;
public Guild(long j) {
super(null);
this.guildId = j;
}
public static /* synthetic */ Guild copy$default(Guild guild, long j, int i, Object obj) {
if ((i & 1) != 0) {
j = guild.guildId;
}
return guild.copy(j);
}
public final long component1() {
return this.guildId;
}
public final Guild copy(long j) {
return new Guild(j);
}
@Override // java.lang.Object
public boolean equals(Object obj) {
if (this != obj) {
return (obj instanceof Guild) && this.guildId == ((Guild) obj).guildId;
}
return true;
}
public final long getGuildId() {
return this.guildId;
}
@Override // java.lang.Object
public int hashCode() {
return b.a(this.guildId);
}
@Override // java.lang.Object
public String toString() {
return a.A(a.P("Guild(guildId="), this.guildId, ")");
}
}
private EmojiPickerContextType() {
}
public /* synthetic */ EmojiPickerContextType(DefaultConstructorMarker defaultConstructorMarker) {
this();
}
}