Skip to content

Instantly share code, notes, and snippets.

View CeCeloz's full-sized avatar
🖤

Haykkonen CeCeloz

🖤
View GitHub Profile
@toncini
toncini / ItemBuilder.java
Created July 5, 2020 18:10
ItemStack builder with Functional Interfaces.
import org.bukkit.Material;
import org.bukkit.inventory.ItemStack;
import org.bukkit.inventory.meta.ItemMeta;
import java.util.Arrays;
import java.util.LinkedList;
import java.util.List;
import java.util.function.BiConsumer;
import java.util.function.BiPredicate;
import java.util.function.Supplier;