#540: Add Inventory#isEmpty()

By: Parker Hawke <hawkeboyz2@hotmail.com>
This commit is contained in:
Bukkit/Spigot 2020-08-16 11:21:05 +10:00
parent 6a0096dd86
commit 045fc42649

View file

@ -288,6 +288,14 @@ public interface Inventory extends Iterable<ItemStack> {
*/
public int firstEmpty();
/**
* Check whether or not this inventory is empty. An inventory is considered
* to be empty if there are no ItemStacks in any slot of this inventory.
*
* @return true if empty, false otherwise
*/
public boolean isEmpty();
/**
* Removes all stacks in the inventory matching the given material.
*