Uses of Class
org.bukkit.NamespacedKey
-
Packages that use NamespacedKey Package Description org.bukkit More generalized classes in the API.org.bukkit.enchantments Classes relating to the specialized enhancements toitem stacks
, as part of themeta data
.org.bukkit.entity Interfaces for non-voxel objects that can exist in aworld
, including all players, monsters, projectiles, etc.org.bukkit.event.player org.bukkit.inventory Classes involved in manipulating player inventories and item interactions.org.bukkit.inventory.meta The interfaces used when manipulating extra data can can be stored insideitem stacks
.org.bukkit.inventory.meta.tags org.bukkit.loot -
-
Uses of NamespacedKey in org.bukkit
Methods in org.bukkit that return NamespacedKey Modifier and Type Method Description NamespacedKey
Keyed. getKey()
Return the namespaced identifier for this object.NamespacedKey
Material. getKey()
static NamespacedKey
NamespacedKey. minecraft(String key)
Get a key in the Minecraft namespace.static NamespacedKey
NamespacedKey. randomKey()
Deprecated.should never be used by plugins, for internal use only!!Methods in org.bukkit with parameters of type NamespacedKey Modifier and Type Method Description static KeyedBossBar
Bukkit. createBossBar(NamespacedKey key, String title, BarColor color, BarStyle style, BarFlag... flags)
Creates a boss bar instance to display to players.KeyedBossBar
Server. createBossBar(NamespacedKey key, String title, BarColor color, BarStyle style, BarFlag... flags)
Creates a boss bar instance to display to players.static Advancement
Bukkit. getAdvancement(NamespacedKey key)
Get the advancement specified by this key.Advancement
Server. getAdvancement(NamespacedKey key)
Get the advancement specified by this key.static KeyedBossBar
Bukkit. getBossBar(NamespacedKey key)
Gets theKeyedBossBar
specified by this key.KeyedBossBar
Server. getBossBar(NamespacedKey key)
Gets theKeyedBossBar
specified by this key.static LootTable
Bukkit. getLootTable(NamespacedKey key)
Gets the specifiedLootTable
.LootTable
Server. getLootTable(NamespacedKey key)
Gets the specifiedLootTable
.static <T extends Keyed>
Tag<T>Bukkit. getTag(String registry, NamespacedKey tag, Class<T> clazz)
Gets a tag which has already been defined within the server.<T extends Keyed>
Tag<T>Server. getTag(String registry, NamespacedKey tag, Class<T> clazz)
Gets a tag which has already been defined within the server.Advancement
UnsafeValues. loadAdvancement(NamespacedKey key, String advancement)
Deprecated.Load an advancement represented by the specified string into the server.boolean
UnsafeValues. removeAdvancement(NamespacedKey key)
Deprecated.Delete an advancement which was loaded and saved byUnsafeValues.loadAdvancement(org.bukkit.NamespacedKey, java.lang.String)
.static boolean
Bukkit. removeBossBar(NamespacedKey key)
Removes aKeyedBossBar
specified by this key.boolean
Server. removeBossBar(NamespacedKey key)
Removes aKeyedBossBar
specified by this key. -
Uses of NamespacedKey in org.bukkit.enchantments
Methods in org.bukkit.enchantments that return NamespacedKey Modifier and Type Method Description NamespacedKey
Enchantment. getKey()
Methods in org.bukkit.enchantments with parameters of type NamespacedKey Modifier and Type Method Description static Enchantment
Enchantment. getByKey(NamespacedKey key)
Gets the Enchantment at the specified keyConstructors in org.bukkit.enchantments with parameters of type NamespacedKey Constructor Description Enchantment(NamespacedKey key)
-
Uses of NamespacedKey in org.bukkit.entity
Methods in org.bukkit.entity with parameters of type NamespacedKey Modifier and Type Method Description boolean
HumanEntity. discoverRecipe(NamespacedKey recipe)
Discover a recipe for this player such that it has not already been discovered.boolean
HumanEntity. undiscoverRecipe(NamespacedKey recipe)
Undiscover a recipe for this player such that it has already been discovered.Method parameters in org.bukkit.entity with type arguments of type NamespacedKey Modifier and Type Method Description int
HumanEntity. discoverRecipes(Collection<NamespacedKey> recipes)
Discover a collection of recipes for this player such that they have not already been discovered.int
HumanEntity. undiscoverRecipes(Collection<NamespacedKey> recipes)
Undiscover a collection of recipes for this player such that they have already been discovered. -
Uses of NamespacedKey in org.bukkit.event.player
Methods in org.bukkit.event.player that return NamespacedKey Modifier and Type Method Description NamespacedKey
PlayerRecipeDiscoverEvent. getRecipe()
Get the namespaced key of the discovered recipe.Constructors in org.bukkit.event.player with parameters of type NamespacedKey Constructor Description PlayerRecipeDiscoverEvent(Player who, NamespacedKey recipe)
-
Uses of NamespacedKey in org.bukkit.inventory
Methods in org.bukkit.inventory that return NamespacedKey Modifier and Type Method Description NamespacedKey
FurnaceRecipe. getKey()
NamespacedKey
ShapedRecipe. getKey()
NamespacedKey
ShapelessRecipe. getKey()
Constructors in org.bukkit.inventory with parameters of type NamespacedKey Constructor Description FurnaceRecipe(NamespacedKey key, ItemStack result, RecipeChoice input, float experience, int cookingTime)
Create a furnace recipe to craft the specified ItemStack.FurnaceRecipe(NamespacedKey key, ItemStack result, Material source, float experience, int cookingTime)
Create a furnace recipe to craft the specified ItemStack.FurnaceRecipe(NamespacedKey key, ItemStack result, Material source, int data, float experience, int cookingTime)
Deprecated.ShapedRecipe(NamespacedKey key, ItemStack result)
Create a shaped recipe to craft the specified ItemStack.ShapelessRecipe(NamespacedKey key, ItemStack result)
Create a shapeless recipe to craft the specified ItemStack. -
Uses of NamespacedKey in org.bukkit.inventory.meta
Methods in org.bukkit.inventory.meta that return types with arguments of type NamespacedKey Modifier and Type Method Description List<NamespacedKey>
KnowledgeBookMeta. getRecipes()
Gets all the recipes in the book.Methods in org.bukkit.inventory.meta with parameters of type NamespacedKey Modifier and Type Method Description void
KnowledgeBookMeta. addRecipe(NamespacedKey... recipes)
Adds new recipe to the end of the book.Method parameters in org.bukkit.inventory.meta with type arguments of type NamespacedKey Modifier and Type Method Description void
KnowledgeBookMeta. setRecipes(List<NamespacedKey> recipes)
Clears the existing book recipes, and sets the book to use the provided recipes. -
Uses of NamespacedKey in org.bukkit.inventory.meta.tags
Methods in org.bukkit.inventory.meta.tags with parameters of type NamespacedKey Modifier and Type Method Description <T,Z>
ZCustomItemTagContainer. getCustomTag(NamespacedKey key, ItemTagType<T,Z> type)
Returns the custom tag's value that is stored on the item.<T,Z>
booleanCustomItemTagContainer. hasCustomTag(NamespacedKey key, ItemTagType<T,Z> type)
Returns if the item meta has a custom tag registered matching the provided parameters.void
CustomItemTagContainer. removeCustomTag(NamespacedKey key)
Removes a custom key from the item meta.<T,Z>
voidCustomItemTagContainer. setCustomTag(NamespacedKey key, ItemTagType<T,Z> type, Z value)
Stores a custom value on theItemMeta
. -
Uses of NamespacedKey in org.bukkit.loot
Methods in org.bukkit.loot that return NamespacedKey Modifier and Type Method Description NamespacedKey
LootTables. getKey()
-