Uses of Class
dev.aura.bungeechat.permission.Permission
-
Packages that use Permission Package Description dev.aura.bungeechat.command dev.aura.bungeechat.message dev.aura.bungeechat.permission -
-
Uses of Permission in dev.aura.bungeechat.command
Constructors in dev.aura.bungeechat.command with parameters of type Permission Constructor Description BaseCommand(String name, Permission permission)
BaseCommand(String name, Permission permission, String[] aliases)
BaseCommand(String name, Permission permission, List<String> aliases)
-
Uses of Permission in dev.aura.bungeechat.message
Methods in dev.aura.bungeechat.message with parameters of type Permission Modifier and Type Method Description static Predicate<dev.aura.bungeechat.api.account.BungeeChatAccount>
MessagesService. getPermissionPredicate(Permission permission)
-
Uses of Permission in dev.aura.bungeechat.permission
Methods in dev.aura.bungeechat.permission that return Permission Modifier and Type Method Description static Permission
Permission. valueOf(String name)
Returns the enum constant of this type with the specified name.static Permission[]
Permission. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in dev.aura.bungeechat.permission with parameters of type Permission Modifier and Type Method Description static boolean
PermissionManager. hasPermission(dev.aura.bungeechat.api.account.BungeeChatAccount account, Permission permission)
static boolean
PermissionManager. hasPermission(dev.aura.bungeechat.api.account.BungeeChatAccount account, Permission permission, boolean sendMessage)
static boolean
PermissionManager. hasPermission(CommandSender sender, Permission permission)
static boolean
PermissionManager. hasPermission(CommandSender sender, Permission permission, boolean sendMessage)
static boolean
PermissionManager. hasPermission(ProxiedPlayer player, Permission permission)
static boolean
PermissionManager. hasPermission(ProxiedPlayer player, Permission permission, boolean sendMessage)
static boolean
PermissionManager. hasPermissionNoMessage(dev.aura.bungeechat.api.account.BungeeChatAccount account, Permission permission)
static boolean
PermissionManager. hasPermissionNoMessage(CommandSender sender, Permission permission)
static boolean
PermissionManager. hasPermissionNoMessage(ProxiedPlayer player, Permission permission)
-