Class GroupedItemInvFixedWrapper
java.lang.Object
alexiil.mc.lib.attributes.item.impl.GroupedItemInvViewFixedWrapper
alexiil.mc.lib.attributes.item.impl.GroupedItemInvFixedWrapper
- All Implemented Interfaces:
- AbstractItemInvView,- GroupedItemInv,- GroupedItemInvView,- ItemExtractable,- ItemInsertable,- ItemTransferable,- LimitedConsumer<net.minecraft.item.ItemStack>,- OpenWrapper
public class GroupedItemInvFixedWrapper
extends GroupedItemInvViewFixedWrapper
implements GroupedItemInv
A 
GroupedItemInv wrapper over a FixedItemInv. This implementation is the naive implementation where
 every insertion operation will look at every slot in the target inventory in order to insert into the most
 appropriate slot first. As such the use of this class is discouraged whenever a more efficient version can be used
 (unless the target inventory has a very small size).- 
Nested Class SummaryNested classes/interfaces inherited from interface alexiil.mc.lib.attributes.item.AbstractItemInvViewAbstractItemInvView.DefaultChangeTrackerNested classes/interfaces inherited from interface alexiil.mc.lib.attributes.item.GroupedItemInvViewGroupedItemInvView.ItemInvStatistic
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionnet.minecraft.item.ItemStackattemptExtraction(ItemFilter filter, int maxCount, Simulation simulation)net.minecraft.item.ItemStackattemptInsertion(net.minecraft.item.ItemStack stack, Simulation simulation)Inserts the given stack into this insertable, and returns the excess.Methods inherited from class alexiil.mc.lib.attributes.item.impl.GroupedItemInvViewFixedWrapperaddListener, addListener, getChangeValue, getStatistics, getStoredStacks, getTotalCapacity, getWrappedMethods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface alexiil.mc.lib.attributes.item.AbstractItemInvViewgetChangeValueMethods inherited from interface alexiil.mc.lib.attributes.item.GroupedItemInvcreateLimitedGroupedInv, filteredMethods inherited from interface alexiil.mc.lib.attributes.item.GroupedItemInvViewaddListener, addListener, getAmount, getAmount, getCapacity, getGroupedView, getSpace, getStatistics, getStatistics, getStoredStacks, getTotalCapacity, isEmptyMethods inherited from interface alexiil.mc.lib.attributes.item.ItemExtractableattemptAnyExtraction, couldExtractAnything, extract, extract, extract, getPureExtractableMethods inherited from interface alexiil.mc.lib.attributes.item.ItemInsertablegetInsertionFilter, getPureInsertable, insert, offer, offer, wouldAccept, wouldPartiallyAccept
- 
Constructor Details- 
GroupedItemInvFixedWrapper
 
- 
- 
Method Details- 
attemptInsertionpublic net.minecraft.item.ItemStack attemptInsertion(net.minecraft.item.ItemStack stack, Simulation simulation)Description copied from interface:ItemInsertableInserts the given stack into this insertable, and returns the excess.- Specified by:
- attemptInsertionin interface- ItemInsertable
- Parameters:
- stack- The incoming stack. Must not be modified by this call.
- simulation- If- Simulation.SIMULATEthen this shouldn't modify anything.
- Returns:
- the excess ItemStackthat wasn't accepted. This will be independent of this insertable, however it might be the given stack instead of a completely new object.
 
- 
attemptExtractionpublic net.minecraft.item.ItemStack attemptExtraction(ItemFilter filter, int maxCount, Simulation simulation)Description copied from interface:ItemExtractable- Specified by:
- attemptExtractionin interface- ItemExtractable
- maxCount- The maximum number of items that can be extracted. Negative numbers throw an exception.
- simulation- If- Simulation.SIMULATEthen this should return the same result that a call with- Simulation.ACTIONwould do, but without modifying anything else.
- Returns:
- A new, independent ItemStackthat was extracted.
 
 
-