Uses of Class
fr.hytale.loader.permission.Permission
Packages that use Permission
-
Uses of Permission in fr.hytale.loader.api
Methods in fr.hytale.loader.api that return types with arguments of type PermissionMethods in fr.hytale.loader.api with parameters of type PermissionModifier and TypeMethodDescriptionvoidPlayer.addPermission(Permission permission) Adds a permission to this player.booleanPlayer.hasPermission(Permission permission) Checks if the player has a specific permission.booleanPlayer.removePermission(Permission permission) Removes a permission from this player. -
Uses of Permission in fr.hytale.loader.permission
Methods in fr.hytale.loader.permission that return PermissionModifier and TypeMethodDescriptionstatic PermissionPermission.forCommand(String namespace, String commandName) Creates a command permission.static PermissionPermission.forCommand(String namespace, String commandName, String subCommand) Creates a command permission with a sub-command.static PermissionPermission.fromNative(String nativePermission) Creates a permission from a native Hytale permission string.Permission.getParent()Gets the parent permission of this permission.static PermissionPermission.hytaleCommand(String commandName) Creates a Hytale native command permission.static PermissionCreates a permission from a permission node string.Methods in fr.hytale.loader.permission that return types with arguments of type PermissionModifier and TypeMethodDescriptionPermissionManager.getPermissions(UUID playerUUID) Gets all permissions for a player.Methods in fr.hytale.loader.permission with parameters of type PermissionModifier and TypeMethodDescriptionvoidPermissionManager.addPermission(UUID playerUUID, Permission permission) Adds a permission to a player.booleanPermissionManager.hasPermission(UUID playerUUID, Permission permission) Checks if a player has a specific permission.booleanPermission.isChildOf(Permission parent) Checks if this permission is a child of another permission.booleanPermission.isParentOf(Permission child) Checks if this permission is a parent of another permission.booleanPermissionManager.removePermission(UUID playerUUID, Permission permission) Removes a permission from a player.