discord-jadx/app/src/main/java/com/discord/api/report/ReportNodeBottomButton.java
2021-06-27 22:44:35 +02:00

73 lines
1.8 KiB
Java

package com.discord.api.report;
import c.d.b.a.a;
import kotlin.jvm.internal.DefaultConstructorMarker;
/* compiled from: InAppReportsMenu.kt */
public abstract class ReportNodeBottomButton {
private final String type;
/* compiled from: InAppReportsMenu.kt */
public static final class Cancel extends ReportNodeBottomButton {
public static final Cancel INSTANCE = new Cancel();
public Cancel() {
super("cancel", null);
}
}
/* compiled from: InAppReportsMenu.kt */
public static final class Done extends ReportNodeBottomButton {
public static final Done INSTANCE = new Done();
public Done() {
super("done", null);
}
}
/* compiled from: InAppReportsMenu.kt */
public static final class Next extends ReportNodeBottomButton {
private final int target;
public Next(int i) {
super("next", null);
this.target = i;
}
public final int b() {
return this.target;
}
public boolean equals(Object obj) {
if (this != obj) {
return (obj instanceof Next) && this.target == ((Next) obj).target;
}
return true;
}
public int hashCode() {
return this.target;
}
public String toString() {
return a.z(a.L("Next(target="), this.target, ")");
}
}
/* compiled from: InAppReportsMenu.kt */
public static final class Submit extends ReportNodeBottomButton {
public static final Submit INSTANCE = new Submit();
public Submit() {
super("submit", null);
}
}
public ReportNodeBottomButton(String str, DefaultConstructorMarker defaultConstructorMarker) {
this.type = str;
}
public final String a() {
return this.type;
}
}