Package net.minecraft.inventory
Interface Inventory
- All Superinterfaces:
Clearable
- All Known Subinterfaces:
Hopper,SidedInventory
- All Known Implementing Classes:
AbstractFurnaceBlockEntity,BarrelBlockEntity,BlastFurnaceBlockEntity,BrewingStandBlockEntity,ChestBlockEntity,ChestMinecartEntity,ComposterBlock.ComposterInventory,ComposterBlock.DummyInventory,ComposterBlock.FullComposterInventory,CraftingInventory,CraftingResultInventory,DispenserBlockEntity,DoubleInventory,DropperBlockEntity,EnderChestInventory,FurnaceBlockEntity,HopperBlockEntity,HopperMinecartEntity,LockableContainerBlockEntity,LootableContainerBlockEntity,MerchantInventory,PlayerInventory,ShulkerBoxBlockEntity,SimpleInventory,SmokerBlockEntity,StorageMinecartEntity,TrappedChestBlockEntity
public interface Inventory extends Clearable
- Mappings:
Namespace Name official apjintermediary net/minecraft/class_1263named net/minecraft/inventory/Inventory
-
Method Summary
Modifier and Type Method Description booleancanPlayerUse(PlayerEntity player)default booleancontainsAny(Set<Item> items)Determines whether this inventory contains any of the given candidate items.default intcount(Item item)Returns the number of times the specified item occurs in this inventory across all stored stacks.default intgetMaxCountPerStack()Returns the maximum number of items a stack can contain when placed inside this inventory.ItemStackgetStack(int slot)Fetches the stack currently stored at the given slot.booleanisEmpty()default booleanisValid(int slot, ItemStack stack)Returns whether the given stack is a valid for the indicated slot position.voidmarkDirty()default voidonClose(PlayerEntity player)default voidonOpen(PlayerEntity player)ItemStackremoveStack(int slot)Removes the stack currently stored at the indicated slot.ItemStackremoveStack(int slot, int amount)Removes a specific number of items from the given slot.voidsetStack(int slot, ItemStack stack)intsize()
-
Method Details
-
size
int size()- Mappings:
Namespace Name Mixin selector official aa_Lapj;aa_()Iintermediary method_5439Lnet/minecraft/class_1263;method_5439()Inamed sizeLnet/minecraft/inventory/Inventory;size()I
-
isEmpty
boolean isEmpty()- Mappings:
Namespace Name Mixin selector official cLapj;c()Zintermediary method_5442Lnet/minecraft/class_1263;method_5442()Znamed isEmptyLnet/minecraft/inventory/Inventory;isEmpty()Z
-
getStack
Fetches the stack currently stored at the given slot. If the slot is empty, or is outside the bounds of this inventory, returns seeItemStack.EMPTY.- Mappings:
Namespace Name Mixin selector official aLapj;a(I)Lbnv;intermediary method_5438Lnet/minecraft/class_1263;method_5438(I)Lnet/minecraft/class_1799;named getStackLnet/minecraft/inventory/Inventory;getStack(I)Lnet/minecraft/item/ItemStack;
-
removeStack
Removes a specific number of items from the given slot.- Returns:
- the removed items as a stack
- Mappings:
Namespace Name Mixin selector official aLapj;a(II)Lbnv;intermediary method_5434Lnet/minecraft/class_1263;method_5434(II)Lnet/minecraft/class_1799;named removeStackLnet/minecraft/inventory/Inventory;removeStack(II)Lnet/minecraft/item/ItemStack;
-
removeStack
Removes the stack currently stored at the indicated slot.- Returns:
- the stack previously stored at the indicated slot.
- Mappings:
Namespace Name Mixin selector official bLapj;b(I)Lbnv;intermediary method_5441Lnet/minecraft/class_1263;method_5441(I)Lnet/minecraft/class_1799;named removeStackLnet/minecraft/inventory/Inventory;removeStack(I)Lnet/minecraft/item/ItemStack;
-
setStack
- Mappings:
Namespace Name Mixin selector official aLapj;a(ILbnv;)Vintermediary method_5447Lnet/minecraft/class_1263;method_5447(ILnet/minecraft/class_1799;)Vnamed setStackLnet/minecraft/inventory/Inventory;setStack(ILnet/minecraft/item/ItemStack;)V
-
getMaxCountPerStack
default int getMaxCountPerStack()Returns the maximum number of items a stack can contain when placed inside this inventory. No slots may have more than this number of items. It is effectively the stacking limit for this inventory's slots.- Returns:
- the max
countof item stacks in this inventory - Mappings:
Namespace Name Mixin selector official W_Lapj;W_()Iintermediary method_5444Lnet/minecraft/class_1263;method_5444()Inamed getMaxCountPerStackLnet/minecraft/inventory/Inventory;getMaxCountPerStack()I
-
markDirty
void markDirty()- Mappings:
Namespace Name Mixin selector official Y_Lapj;Y_()Vintermediary method_5431Lnet/minecraft/class_1263;method_5431()Vnamed markDirtyLnet/minecraft/inventory/Inventory;markDirty()V
-
canPlayerUse
- Mappings:
Namespace Name Mixin selector official aLapj;a(Lbhl;)Zintermediary method_5443Lnet/minecraft/class_1263;method_5443(Lnet/minecraft/class_1657;)Znamed canPlayerUseLnet/minecraft/inventory/Inventory;canPlayerUse(Lnet/minecraft/entity/player/PlayerEntity;)Z
-
onOpen
- Mappings:
Namespace Name Mixin selector official c_Lapj;c_(Lbhl;)Vintermediary method_5435Lnet/minecraft/class_1263;method_5435(Lnet/minecraft/class_1657;)Vnamed onOpenLnet/minecraft/inventory/Inventory;onOpen(Lnet/minecraft/entity/player/PlayerEntity;)V
-
onClose
- Mappings:
Namespace Name Mixin selector official b_Lapj;b_(Lbhl;)Vintermediary method_5432Lnet/minecraft/class_1263;method_5432(Lnet/minecraft/class_1657;)Vnamed onCloseLnet/minecraft/inventory/Inventory;onClose(Lnet/minecraft/entity/player/PlayerEntity;)V
-
isValid
Returns whether the given stack is a valid for the indicated slot position.- Mappings:
Namespace Name Mixin selector official bLapj;b(ILbnv;)Zintermediary method_5437Lnet/minecraft/class_1263;method_5437(ILnet/minecraft/class_1799;)Znamed isValidLnet/minecraft/inventory/Inventory;isValid(ILnet/minecraft/item/ItemStack;)Z
-
count
Returns the number of times the specified item occurs in this inventory across all stored stacks.- Mappings:
Namespace Name Mixin selector official aLapj;a(Lbnr;)Iintermediary method_18861Lnet/minecraft/class_1263;method_18861(Lnet/minecraft/class_1792;)Inamed countLnet/minecraft/inventory/Inventory;count(Lnet/minecraft/item/Item;)I
-
containsAny
Determines whether this inventory contains any of the given candidate items.- Mappings:
Namespace Name Mixin selector official aLapj;a(Ljava/util/Set;)Zintermediary method_18862Lnet/minecraft/class_1263;method_18862(Ljava/util/Set;)Znamed containsAnyLnet/minecraft/inventory/Inventory;containsAny(Ljava/util/Set;)Z
-