本文整理汇总了Java中net.dv8tion.jda.core.entities.TextChannel.getId方法的典型用法代码示例。如果您正苦于以下问题:Java TextChannel.getId方法的具体用法?Java TextChannel.getId怎么用?Java TextChannel.getId使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类net.dv8tion.jda.core.entities.TextChannel
的用法示例。
在下文中一共展示了TextChannel.getId方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: blockChannel
import net.dv8tion.jda.core.entities.TextChannel; //导入方法依赖的package包/类
private void blockChannel(CommandManager.ParsedCommandInvocation parsedCommandInvocation) {
Message message = parsedCommandInvocation.getMessage();
if (message.getMentionedChannels().isEmpty()) {
message.getTextChannel().sendMessage(EmbedUtil.error("Unknown channel", "Please mention the textchannel that should be blacklisted").build()).queue(msg -> msg.delete().queueAfter(5, TimeUnit.SECONDS));
return;
}
TextChannel channel = message.getMentionedChannels().get(0);
if (RubiconBot.getMySQL().isBlacklisted(channel)) {
message.getTextChannel().sendMessage(EmbedUtil.error("Blacklisted channel", "That channel is already blacklisted").build()).queue(msg -> msg.delete().queueAfter(5, TimeUnit.SECONDS));
return;
}
String oldEntry = RubiconBot.getMySQL().getGuildValue(message.getGuild(), "blacklist");
String newEntry;
if (oldEntry.equals(""))
newEntry = channel.getId();
else
newEntry = oldEntry + "," + channel.getId();
RubiconBot.getMySQL().updateGuildValue(message.getGuild(), "blacklist", newEntry);
message.getTextChannel().sendMessage(EmbedUtil.success("Blacklisted channel!", "Successfully added channel to blacklist").build()).queue(msg -> msg.delete().queueAfter(5, TimeUnit.SECONDS));
}
示例2: onTextChannelDelete
import net.dv8tion.jda.core.entities.TextChannel; //导入方法依赖的package包/类
@Override
public void onTextChannelDelete(TextChannelDeleteEvent e) {
String portalStatus = RubiconBot.getMySQL().getGuildValue(e.getGuild(), "portal");
if(portalStatus.equalsIgnoreCase("closed") || portalStatus.equalsIgnoreCase("waiting"))
return;
if(portalStatus.equalsIgnoreCase("open")) {
TextChannel channel = e.getJDA().getTextChannelById(RubiconBot.getMySQL().getPortalValue(e.getGuild(), "channelid"));
if(e.getChannel().getId() != channel.getId())
return;
Guild partnerGuild = e.getJDA().getGuildById(RubiconBot.getMySQL().getPortalValue(e.getGuild(), "partnerid"));
RubiconBot.getMySQL().deletePortal(e.getGuild());
RubiconBot.getMySQL().deletePortal(partnerGuild);
RubiconBot.getMySQL().updateGuildValue(e.getGuild(), "portal", "closed");
RubiconBot.getMySQL().updateGuildValue(partnerGuild, "portal", "closed");
sendPortalNotification(e.getGuild(), "Portal was closed.");
sendPortalNotification(partnerGuild, "Portal was closed on the other side.");
}
}
示例3: SparkTwitchBean
import net.dv8tion.jda.core.entities.TextChannel; //导入方法依赖的package包/类
private SparkTwitchBean(TextChannel ch, String twitchHandle) {
this.channelId = ch.getId();
this.channelName = ch.getName();
this.twitchHandle = twitchHandle;
}