Class BookBuilder
java.lang.Object
fr.multimc.api.spigot.common.tools.builders.items.ItemBuilder
fr.multimc.api.spigot.common.tools.builders.items.BookBuilder
Create easily a book.
- Since:
- 04/10/2022
-
Constructor Summary
ConstructorsConstructorDescriptionCreate an instance of BookBuilder based on the ItemBuilder.BookBuilder
(int amount) Create an instance of BookBuilder based on the ItemBuilder with a custom amount.BookBuilder
(@NotNull org.bukkit.inventory.ItemStack item) Create an instance of BookBuilder based on the ItemBuilder with an existing item. -
Method Summary
Modifier and TypeMethodDescriptionDeprecated.Deprecated.Set the book author name.setGeneration
(org.bukkit.inventory.meta.BookMeta.Generation generation) Set the book generation.Set the book title.Methods inherited from class fr.multimc.api.spigot.common.tools.builders.items.ItemBuilder
addEnchantment, addEnchantments, addFlags, applyMeta, build, getMeta, removeAllEnchantments, removeEnchantment, removeEnchantments, removeEnchantments, removeFlags, setCustomModelData, setLegacyLore, setLegacyLore, setLegacyName, setLore, setLore, setName, setUnbreakable
-
Constructor Details
-
BookBuilder
public BookBuilder()Create an instance of BookBuilder based on the ItemBuilder. -
BookBuilder
public BookBuilder(@NotNull @NotNull org.bukkit.inventory.ItemStack item) Create an instance of BookBuilder based on the ItemBuilder with an existing item.- Parameters:
item
- Item.
-
BookBuilder
public BookBuilder(int amount) Create an instance of BookBuilder based on the ItemBuilder with a custom amount.- Parameters:
amount
- Amount.
-
-
Method Details
-
setAuthor
Set the book author name.- Parameters:
author
- Author name.- Returns:
- Current instance of the builder.
-
addPages
Deprecated.Add pages to the book.- Parameters:
pages
- Pages.- Returns:
- Current instance of the builder.
-
addPage
Deprecated.Add pages to the book.- Parameters:
page
- Pages.- Returns:
- Current instance of the builder.
-
setGeneration
public BookBuilder setGeneration(@Nullable org.bukkit.inventory.meta.BookMeta.Generation generation) Set the book generation.- Parameters:
generation
- Generation.- Returns:
- Current instance of the builder.
-
setTitle
Set the book title.- Parameters:
title
- Title.- Returns:
- Current instance of the builder.
-