discord-jadx/app/src/main/java/com/discord/widgets/voice/feedback/FeedbackIssue.java
2021-07-04 01:36:06 +02:00

53 lines
1.8 KiB
Java

package com.discord.widgets.voice.feedback;
import androidx.annotation.StringRes;
import com.discord.utilities.mg_recycler.MGRecyclerDataPayload;
/* compiled from: FeedbackIssue.kt */
public enum FeedbackIssue implements MGRecyclerDataPayload {
OTHER(2131887126),
COULD_NOT_HEAR_AUDIO(2131887123),
NOBODY_COULD_HEAR_ME(2131887125),
AUDIO_ECHOS(2131887119),
AUDIO_ROBOTIC(2131887120),
AUDIO_CUT_IN_AND_OUT(2131887118),
VOLUME_TOO_LOW_OR_HIGH(2131887122),
BACKGROUND_NOISE_TOO_LOUD(2131887121),
SPEAKERPHONE_ISSUE(2131887127),
HEADSET_OR_BLUETOOTH_ISSUE(2131887124),
STREAM_REPORT_ENDED_BLACK(2131893735),
STREAM_REPORT_ENDED_BLURRY(2131893736),
STREAM_REPORT_ENDED_LAGGING(2131893737),
STREAM_REPORT_ENDED_OUT_OF_SYNC(2131893738),
STREAM_REPORT_ENDED_AUDIO_MISSING(2131893733),
STREAM_REPORT_ENDED_AUDIO_POOR(2131893734),
STREAM_REPORT_ENDED_STREAM_STOPPED_UNEXPECTEDLY(2131893739),
GUILD_DELETE_TOO_HARD(2131889203),
GUILD_DELETE_TEST(2131889202),
GUILD_DELETE_ACCIDENT(2131889194),
GUILD_DELETE_TEMPLATE(2131889201),
GUILD_DELETE_LONELY(2131889198),
GUILD_DELETE_INACTIVE(2131889197),
GUILD_DELETE_OTHER(2131889199);
private final String key = String.valueOf(hashCode());
private final int reasonStringRes;
private final int type;
private FeedbackIssue(@StringRes int i) {
this.reasonStringRes = i;
}
@Override // com.discord.utilities.mg_recycler.MGRecyclerDataPayload, com.discord.utilities.recycler.DiffKeyProvider
public String getKey() {
return this.key;
}
public final int getReasonStringRes() {
return this.reasonStringRes;
}
@Override // com.discord.utilities.mg_recycler.MGRecyclerDataPayload
public int getType() {
return this.type;
}
}