Uses of Class
net.mathias2246.buildmc.api.item.AbstractCustomItem
Packages that use AbstractCustomItem
-
Uses of AbstractCustomItem in net.mathias2246.buildmc.api.item
Classes in net.mathias2246.buildmc.api.item that implement interfaces with type arguments of type AbstractCustomItemModifier and TypeClassDescriptionclassA Register that stores AbstractCustomItem Instanced to be used somewhere else in your plugin.Methods in net.mathias2246.buildmc.api.item that return AbstractCustomItemModifier and TypeMethodDescription@Nullable AbstractCustomItemCustomItemRegistry.get(@Nullable org.bukkit.NamespacedKey namespacedKey) @Nullable AbstractCustomItemCustomItemRegistry.getFromItemStack(@Nullable org.bukkit.inventory.ItemStack item) Helper method for getting AbstractCustomItem Instance from ItemStack.@NotNull AbstractCustomItemCustomItemRegistry.getOrThrow(@NotNull org.bukkit.NamespacedKey namespacedKey) Tries to get a registry entry by key or throws an IllegalArgumentException.Methods in net.mathias2246.buildmc.api.item that return types with arguments of type AbstractCustomItemModifier and TypeMethodDescription@NotNull Iterator<AbstractCustomItem> CustomItemRegistry.iterator()@NotNull Stream<AbstractCustomItem> CustomItemRegistry.stream()Methods in net.mathias2246.buildmc.api.item with parameters of type AbstractCustomItemModifier and TypeMethodDescriptionvoidCustomItemRegistry.register(@NotNull AbstractCustomItem item) Registers a AbstractCustomItem Instance inside this registry.voidCustomItemRegistry.tryRegister(@NotNull AbstractCustomItem item) Registers a AbstractCustomItem Instance inside this registry. -
Uses of AbstractCustomItem in net.mathias2246.buildmc.api.item.abstractTypes
Subclasses of AbstractCustomItem in net.mathias2246.buildmc.api.item.abstractTypesModifier and TypeClassDescriptionclassAn abstract-class that can be used to create selection tools.classAn abstract class that should be used to define custom tools for your plugin.