Package net.minecraft.inventory
Interface Inventory
- All Superinterfaces:
Clearable
- All Known Subinterfaces:
class_8566,Hopper,SidedInventory,SingleStackInventory,VehicleInventory
- All Known Implementing Classes:
AbstractFurnaceBlockEntity,BarrelBlockEntity,BlastFurnaceBlockEntity,BrewingStandBlockEntity,ChestBlockEntity,ChestBoatEntity,ChestMinecartEntity,ChiseledBookshelfBlockEntity,ComposterBlock.ComposterInventory,ComposterBlock.DummyInventory,ComposterBlock.FullComposterInventory,CraftingInventory,CraftingResultInventory,DispenserBlockEntity,DoubleInventory,DropperBlockEntity,EnderChestInventory,FurnaceBlockEntity,HopperBlockEntity,HopperMinecartEntity,JukeboxBlockEntity,LockableContainerBlockEntity,LootableContainerBlockEntity,MerchantInventory,PlayerInventory,ShulkerBoxBlockEntity,SimpleInventory,SmokerBlockEntity,StorageMinecartEntity,TrappedChestBlockEntity
- Mappings:
Namespace Name intermediary net/minecraft/class_1263official bdpnamed net/minecraft/inventory/Inventory
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intstatic final int -
Method Summary
Modifier and TypeMethodDescriptionstatic booleancanPlayerUse(BlockEntity blockEntity, PlayerEntity player) static booleancanPlayerUse(BlockEntity blockEntity, PlayerEntity player, int range) booleancanPlayerUse(PlayerEntity player) default booleancanTransferTo(Inventory hopperInventory, int slot, ItemStack stack) default booleancontainsAny(Predicate<ItemStack> predicate) default booleancontainsAny(Set<Item> items) Determines whether this inventory contains any of the given candidate items.default intReturns the number of times the specified item occurs in this inventory across all stored stacks.default intReturns the maximum number of items a stack can contain when placed inside this inventory.getStack(int slot) Fetches the stack currently stored at the given slot.booleanisEmpty()default booleanReturns whether the given stack is a valid for the indicated slot position.voiddefault voidonClose(PlayerEntity player) default voidonOpen(PlayerEntity player) removeStack(int slot) Removes the stack currently stored at the indicated slot.removeStack(int slot, int amount) Removes a specific number of items from the given slot.voidintsize()
-
Field Details
-
MAX_COUNT_PER_STACK
static final int MAX_COUNT_PER_STACK- See Also:
- Mappings:
Namespace Name Mixin selector intermediary field_29952Lnet/minecraft/class_1263;field_29952:Iofficial m_Lbdp;m_:Inamed MAX_COUNT_PER_STACKLnet/minecraft/inventory/Inventory;MAX_COUNT_PER_STACK:I
-
field_42619
static final int field_42619- See Also:
- Mappings:
Namespace Name Mixin selector intermediary field_42619Lnet/minecraft/class_1263;field_42619:Iofficial n_Lbdp;n_:Inamed field_42619Lnet/minecraft/inventory/Inventory;field_42619:I
-
-
Method Details
-
size
int size()- Mappings:
Namespace Name Mixin selector intermediary method_5439Lnet/minecraft/class_1263;method_5439()Iofficial bLbdp;b()Inamed sizeLnet/minecraft/inventory/Inventory;size()I
-
isEmpty
boolean isEmpty()- Mappings:
Namespace Name Mixin selector intermediary method_5442Lnet/minecraft/class_1263;method_5442()Zofficial aa_Lbdp;aa_()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 intermediary method_5438Lnet/minecraft/class_1263;method_5438(I)Lnet/minecraft/class_1799;official aLbdp;a(I)Lcfx;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 intermediary method_5434Lnet/minecraft/class_1263;method_5434(II)Lnet/minecraft/class_1799;official aLbdp;a(II)Lcfx;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 intermediary method_5441Lnet/minecraft/class_1263;method_5441(I)Lnet/minecraft/class_1799;official bLbdp;b(I)Lcfx;named removeStackLnet/minecraft/inventory/Inventory;removeStack(I)Lnet/minecraft/item/ItemStack;
-
setStack
- Mappings:
Namespace Name Mixin selector intermediary method_5447Lnet/minecraft/class_1263;method_5447(ILnet/minecraft/class_1799;)Vofficial aLbdp;a(ILcfx;)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 intermediary method_5444Lnet/minecraft/class_1263;method_5444()Iofficial ab_Lbdp;ab_()Inamed getMaxCountPerStackLnet/minecraft/inventory/Inventory;getMaxCountPerStack()I
-
markDirty
void markDirty()- Mappings:
Namespace Name Mixin selector intermediary method_5431Lnet/minecraft/class_1263;method_5431()Vofficial eLbdp;e()Vnamed markDirtyLnet/minecraft/inventory/Inventory;markDirty()V
-
canPlayerUse
- Mappings:
Namespace Name Mixin selector intermediary method_5443Lnet/minecraft/class_1263;method_5443(Lnet/minecraft/class_1657;)Zofficial aLbdp;a(Lbym;)Znamed canPlayerUseLnet/minecraft/inventory/Inventory;canPlayerUse(Lnet/minecraft/entity/player/PlayerEntity;)Z
-
onOpen
- Mappings:
Namespace Name Mixin selector intermediary method_5435Lnet/minecraft/class_1263;method_5435(Lnet/minecraft/class_1657;)Vofficial d_Lbdp;d_(Lbym;)Vnamed onOpenLnet/minecraft/inventory/Inventory;onOpen(Lnet/minecraft/entity/player/PlayerEntity;)V
-
onClose
- Mappings:
Namespace Name Mixin selector intermediary method_5432Lnet/minecraft/class_1263;method_5432(Lnet/minecraft/class_1657;)Vofficial cLbdp;c(Lbym;)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 intermediary method_5437Lnet/minecraft/class_1263;method_5437(ILnet/minecraft/class_1799;)Zofficial bLbdp;b(ILcfx;)Znamed isValidLnet/minecraft/inventory/Inventory;isValid(ILnet/minecraft/item/ItemStack;)Z
-
canTransferTo
- Mappings:
Namespace Name Mixin selector intermediary method_49104Lnet/minecraft/class_1263;method_49104(Lnet/minecraft/class_1263;ILnet/minecraft/class_1799;)Zofficial aLbdp;a(Lbdp;ILcfx;)Znamed canTransferToLnet/minecraft/inventory/Inventory;canTransferTo(Lnet/minecraft/inventory/Inventory;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 intermediary method_18861Lnet/minecraft/class_1263;method_18861(Lnet/minecraft/class_1792;)Iofficial a_Lbdp;a_(Lcfs;)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 intermediary method_18862Lnet/minecraft/class_1263;method_18862(Ljava/util/Set;)Zofficial aLbdp;a(Ljava/util/Set;)Znamed containsAnyLnet/minecraft/inventory/Inventory;containsAny(Ljava/util/Set;)Z
-
containsAny
- Mappings:
Namespace Name Mixin selector intermediary method_43256Lnet/minecraft/class_1263;method_43256(Ljava/util/function/Predicate;)Zofficial a_Lbdp;a_(Ljava/util/function/Predicate;)Znamed containsAnyLnet/minecraft/inventory/Inventory;containsAny(Ljava/util/function/Predicate;)Z
-
canPlayerUse
- Mappings:
Namespace Name Mixin selector intermediary method_49105Lnet/minecraft/class_1263;method_49105(Lnet/minecraft/class_2586;Lnet/minecraft/class_1657;)Zofficial aLbdp;a(Lczk;Lbym;)Znamed canPlayerUseLnet/minecraft/inventory/Inventory;canPlayerUse(Lnet/minecraft/block/entity/BlockEntity;Lnet/minecraft/entity/player/PlayerEntity;)Z
-
canPlayerUse
- Mappings:
Namespace Name Mixin selector intermediary method_49106Lnet/minecraft/class_1263;method_49106(Lnet/minecraft/class_2586;Lnet/minecraft/class_1657;I)Zofficial aLbdp;a(Lczk;Lbym;I)Znamed canPlayerUseLnet/minecraft/inventory/Inventory;canPlayerUse(Lnet/minecraft/block/entity/BlockEntity;Lnet/minecraft/entity/player/PlayerEntity;I)Z
-