Uses of Class
org.bukkit.permissions.PermissionDefault
-
Packages that use PermissionDefault Package Description org.bukkit.permissions Classes dedicated to providing binary state properties to players.org.bukkit.plugin Classes specifically relating to loading software modules at runtime.org.bukkit.util.permissions Static methods for miscellaneouspermissionfunctionality. -
-
Uses of PermissionDefault in org.bukkit.permissions
Fields in org.bukkit.permissions declared as PermissionDefault Modifier and Type Field Description static PermissionDefaultPermission. DEFAULT_PERMISSIONMethods in org.bukkit.permissions that return PermissionDefault Modifier and Type Method Description static @Nullable PermissionDefaultPermissionDefault. getByName(@NotNull String name)Looks up a PermissionDefault by name@NotNull PermissionDefaultPermission. getDefault()Gets the default value of this permission.static PermissionDefaultPermissionDefault. valueOf(String name)Returns the enum constant of this type with the specified name.static PermissionDefault[]PermissionDefault. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.bukkit.permissions with parameters of type PermissionDefault Modifier and Type Method Description static @NotNull PermissionPermission. loadPermission(@NotNull String name, @NotNull Map<?,?> data, @Nullable PermissionDefault def, @Nullable List<Permission> output)Loads a Permission from a map of data, usually used from retrieval from a yaml file.static @NotNull List<Permission>Permission. loadPermissions(@NotNull Map<?,?> data, @NotNull String error, @Nullable PermissionDefault def)Loads a list of Permissions from a map of data, usually used from retrieval from a yaml file.voidPermission. setDefault(@NotNull PermissionDefault value)Sets the default value of this permission.Constructors in org.bukkit.permissions with parameters of type PermissionDefault Constructor Description Permission(@NotNull String name, @Nullable String description, @Nullable PermissionDefault defaultValue)Permission(@NotNull String name, @Nullable String description, @Nullable PermissionDefault defaultValue, @Nullable Map<String,Boolean> children)Permission(@NotNull String name, @Nullable PermissionDefault defaultValue)Permission(@NotNull String name, @Nullable PermissionDefault defaultValue, @Nullable Map<String,Boolean> children) -
Uses of PermissionDefault in org.bukkit.plugin
Methods in org.bukkit.plugin that return PermissionDefault Modifier and Type Method Description @NotNull PermissionDefaultPluginDescriptionFile. getPermissionDefault()Gives the defaultdefaultstate ofpermissionsregistered for the plugin. -
Uses of PermissionDefault in org.bukkit.util.permissions
Methods in org.bukkit.util.permissions with parameters of type PermissionDefault Modifier and Type Method Description static @NotNull PermissionDefaultPermissions. registerPermission(@NotNull String name, @Nullable String desc, @Nullable PermissionDefault def)static @NotNull PermissionDefaultPermissions. registerPermission(@NotNull String name, @Nullable String desc, @Nullable PermissionDefault def, @NotNull Permission parent)static @NotNull PermissionDefaultPermissions. registerPermission(@NotNull String name, @Nullable String desc, @Nullable PermissionDefault def, @Nullable Map<String,Boolean> children)static @NotNull PermissionDefaultPermissions. registerPermission(@NotNull String name, @Nullable String desc, @Nullable PermissionDefault def, @Nullable Map<String,Boolean> children, @NotNull Permission parent)
-