| Package | Description | 
|---|---|
| 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 inside
  
item stacks. | 
| Modifier and Type | Method | Description | 
|---|---|---|
static ItemFlag | 
ItemFlag.valueOf(String name) | 
 Returns the enum constant of this type with the specified name. 
 | 
static ItemFlag[] | 
ItemFlag.values() | 
 Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
| Modifier and Type | Method | Description | 
|---|---|---|
Set<ItemFlag> | 
ItemStack.getItemFlags() | 
 Get current set itemFlags. 
 | 
| Modifier and Type | Method | Description | 
|---|---|---|
void | 
ItemStack.addItemFlags(ItemFlag... itemFlags) | 
 Set itemflags which should be ignored when rendering a ItemStack in the Client. 
 | 
boolean | 
ItemStack.hasItemFlag(ItemFlag flag) | 
 Check if the specified flag is present on this item. 
 | 
void | 
ItemStack.removeItemFlags(ItemFlag... itemFlags) | 
 Remove specific set of itemFlags. 
 | 
| Modifier and Type | Method | Description | 
|---|---|---|
Set<ItemFlag> | 
ItemMeta.getItemFlags() | 
 Get current set itemFlags. 
 | 
| Modifier and Type | Method | Description | 
|---|---|---|
void | 
ItemMeta.addItemFlags(ItemFlag... itemFlags) | 
 Set itemflags which should be ignored when rendering a ItemStack in the Client. 
 | 
boolean | 
ItemMeta.hasItemFlag(ItemFlag flag) | 
 Check if the specified flag is present on this item. 
 | 
void | 
ItemMeta.removeItemFlags(ItemFlag... itemFlags) | 
 Remove specific set of itemFlags. 
 | 
Copyright © 2019. All rights reserved.