Class SimpleFixedItemInvInsertable
java.lang.Object
alexiil.mc.lib.attributes.item.impl.SimpleFixedItemInvInsertable
- All Implemented Interfaces:
- ItemInsertable,- LimitedConsumer<net.minecraft.item.ItemStack>
@Deprecated(since="0.4.0",
            forRemoval=true)
public final class SimpleFixedItemInvInsertable
extends Object
implements ItemInsertable
Deprecated, for removal: This API element is subject to removal in a future version.
An 
ItemInsertable wrapper over an 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 made
 (unless the target inventory has a very small size.- 
Constructor SummaryConstructorsConstructorDescriptionDeprecated, for removal: This API element is subject to removal in a future version.
- 
Method SummaryModifier and TypeMethodDescriptionnet.minecraft.item.ItemStackattemptInsertion(net.minecraft.item.ItemStack stack, Simulation simulation)Deprecated, for removal: This API element is subject to removal in a future version.Inserts the given stack into this insertable, and returns the excess.Deprecated, for removal: This API element is subject to removal in a future version.Returns anItemFilterto determine ifItemInsertable.attemptInsertion(ItemStack, Simulation)will accept a stack.Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface alexiil.mc.lib.attributes.item.ItemInsertablefiltered, getPureInsertable, insert, offer, offer, wouldAccept, wouldPartiallyAccept
- 
Constructor Details- 
SimpleFixedItemInvInsertableDeprecated, for removal: This API element is subject to removal in a future version.
 
- 
- 
Method Details- 
attemptInsertionpublic net.minecraft.item.ItemStack attemptInsertion(net.minecraft.item.ItemStack stack, Simulation simulation)Deprecated, for removal: This API element is subject to removal in a future version.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.
 
- 
getInsertionFilterDeprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:ItemInsertableReturns anItemFilterto determine ifItemInsertable.attemptInsertion(ItemStack, Simulation)will accept a stack. The default implementation is a call toattemptInsertion(stack,Simulation.SIMULATE), and it is only useful to override this if the resulting filter contains information that might be usable by the caller.- Specified by:
- getInsertionFilterin interface- ItemInsertable
- Returns:
- A filter to determine if ItemInsertable.attemptInsertion(ItemStack, Simulation)will accept the entirety of a given stack.
 
 
- 
GroupedItemInvFixedWrapperinstead.