discord-jadx/app/src/main/java/com/discord/widgets/nux/GuildTemplate.java

45 lines
2.5 KiB
Java

package com.discord.widgets.nux;
import androidx.annotation.DrawableRes;
import androidx.annotation.StringRes;
import com.discord.R;
import com.discord.widgets.guilds.create.StockGuildTemplate;
/* compiled from: GuildTemplates.kt */
public enum GuildTemplate {
CreateMyOwn(R.string.guild_template_header_create, R.drawable.drawable_guild_template_create, StockGuildTemplate.CREATE),
Gaming(R.string.guild_template_header_gaming, R.drawable.drawable_guild_template_gaming, StockGuildTemplate.GAMING_GROUP),
SchoolClub(R.string.guild_template_header_school_club, R.drawable.drawable_guild_template_club, StockGuildTemplate.CLUB),
StudyGroup(R.string.guild_template_header_study, R.drawable.drawable_guild_template_study, StockGuildTemplate.STUDY_GROUP),
Friends(R.string.guild_template_header_friend, R.drawable.drawable_guild_template_friend, StockGuildTemplate.FRIEND_GROUP),
ArtistsAndCreators(R.string.guild_template_header_creator, R.drawable.drawable_guild_template_creator, StockGuildTemplate.CONTENT_CREATOR),
LocalCommunity(R.string.guild_template_header_community, R.drawable.drawable_guild_template_community, StockGuildTemplate.LOCAL_COMMUNITY),
HubStudyGroup(R.string.guild_template_header_study, R.drawable.drawable_guild_template_friend, StockGuildTemplate.HUB_STUDY_GROUP),
HubSchoolClub(R.string.guild_template_header_school_club, R.drawable.drawable_guild_template_community, StockGuildTemplate.HUB_SCHOOL_CLUB),
Class(R.string.guild_template_header_class, R.drawable.drawable_guild_template_study, StockGuildTemplate.CLASS),
Social(R.string.guild_template_header_social, R.drawable.drawable_guild_template_gaming, StockGuildTemplate.SOCIAL),
SubjectOrMajor(R.string.guild_template_header_major, R.drawable.drawable_guild_template_club, StockGuildTemplate.MAJOR),
Dorm(R.string.guild_template_header_dorm, R.drawable.drawable_guild_template_creator, StockGuildTemplate.DORM);
private final int drawableRes;
private final StockGuildTemplate templateType;
private final int titleRes;
private GuildTemplate(@StringRes int i, @DrawableRes int i2, StockGuildTemplate stockGuildTemplate) {
this.titleRes = i;
this.drawableRes = i2;
this.templateType = stockGuildTemplate;
}
public final int getDrawableRes() {
return this.drawableRes;
}
public final StockGuildTemplate getTemplateType() {
return this.templateType;
}
public final int getTitleRes() {
return this.titleRes;
}
}