discord-jadx/app/src/main/java/com/discord/widgets/voice/feedback/FeedbackIssue.java

54 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(2131887128),
COULD_NOT_HEAR_AUDIO(2131887125),
NOBODY_COULD_HEAR_ME(2131887127),
AUDIO_ECHOS(2131887121),
AUDIO_ROBOTIC(2131887122),
AUDIO_CUT_IN_AND_OUT(2131887120),
VOLUME_TOO_LOW_OR_HIGH(2131887124),
BACKGROUND_NOISE_TOO_LOUD(2131887123),
SPEAKERPHONE_ISSUE(2131887129),
HEADSET_OR_BLUETOOTH_ISSUE(2131887126),
STREAM_REPORT_ENDED_BLACK(2131893857),
STREAM_REPORT_ENDED_BLURRY(2131893858),
STREAM_REPORT_ENDED_LAGGING(2131893859),
STREAM_REPORT_ENDED_OUT_OF_SYNC(2131893860),
STREAM_REPORT_ENDED_AUDIO_MISSING(2131893855),
STREAM_REPORT_ENDED_AUDIO_POOR(2131893856),
STREAM_REPORT_ENDED_STREAM_STOPPED_UNEXPECTEDLY(2131893861),
GUILD_DELETE_TOO_HARD(2131889210),
GUILD_DELETE_TEST(2131889209),
GUILD_DELETE_ACCIDENT(2131889201),
GUILD_DELETE_TEMPLATE(2131889208),
GUILD_DELETE_LONELY(2131889205),
GUILD_DELETE_INACTIVE(2131889204),
GUILD_DELETE_OTHER(2131889206);
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;
}
}