Enum EmptyItemTransferable
java.lang.Object
java.lang.Enum<EmptyItemTransferable>
alexiil.mc.lib.attributes.item.impl.EmptyItemTransferable
- All Implemented Interfaces:
 ItemExtractable,ItemInsertable,ItemTransferable,LimitedConsumer<net.minecraft.item.ItemStack>,NullVariant,java.io.Serializable,java.lang.Comparable<EmptyItemTransferable>,java.lang.constant.Constable
public enum EmptyItemTransferable extends java.lang.Enum<EmptyItemTransferable> implements ItemTransferable, NullVariant
An 
ItemTransferable that never returns any items from
 attemptExtraction(ItemFilter, int, Simulation), nor accepts any items in
 attemptInsertion(ItemStack, Simulation).- 
Nested Class Summary
 - 
Enum Constant Summary
Enum Constants Enum Constant Description CONTROLLERAnItemTransferablethat informs callers that it will interact with a nearbyItemTransferable,ItemExtractable, orItemInsertablebut doesn't expose any other item based attributes.NULLAnItemTransferablethat should be treated as equal to null in all circumstances - that is any checks that depend on an object being transferable should be considered FALSE for this instance. - 
Method Summary
Modifier and Type Method Description net.minecraft.item.ItemStackattemptExtraction(ItemFilter filter, int maxAmount, Simulation simulation)net.minecraft.item.ItemStackattemptInsertion(net.minecraft.item.ItemStack stack, Simulation simulation)Inserts the given stack into this insertable, and returns the excess.ItemFiltergetInsertionFilter()Returns anItemFilterto determine ifItemInsertable.attemptInsertion(ItemStack, Simulation)will accept a stack.ItemExtractablegetPureExtractable()ItemInsertablegetPureInsertable()java.lang.StringtoString()static EmptyItemTransferablevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static EmptyItemTransferable[]values()Returns an array containing the constants of this enum type, in the order they are declared.Methods inherited from class java.lang.Enum
clone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOfMethods inherited from interface alexiil.mc.lib.attributes.item.ItemExtractable
attemptAnyExtraction, couldExtractAnything, extract, extract, extractMethods inherited from interface alexiil.mc.lib.attributes.item.ItemInsertable
insert, offer, offer, wouldAccept, wouldPartiallyAccept 
- 
Enum Constant Details
- 
NULL
AnItemTransferablethat should be treated as equal to null in all circumstances - that is any checks that depend on an object being transferable should be considered FALSE for this instance. - 
CONTROLLER
AnItemTransferablethat informs callers that it will interact with a nearbyItemTransferable,ItemExtractable, orItemInsertablebut doesn't expose any other item based attributes. 
 - 
 - 
Method Details
- 
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
 - an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
 name- the name of the enum constant to be returned.- Returns:
 - the enum constant with the specified name
 - Throws:
 java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
 - 
attemptInsertion
public 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 interfaceItemInsertable- Parameters:
 stack- The incoming stack. Must not be modified by this call.simulation- IfSimulation.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. 
 - 
getInsertionFilter
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 interfaceItemInsertable- Returns:
 - A filter to determine if 
ItemInsertable.attemptInsertion(ItemStack, Simulation)will accept the entirety of a given stack. 
 - 
attemptExtraction
public net.minecraft.item.ItemStack attemptExtraction(ItemFilter filter, int maxAmount, Simulation simulation)Description copied from interface:ItemExtractable- Specified by:
 attemptExtractionin interfaceItemExtractablemaxAmount- The maximum number of items that can be extracted. Negative numbers throw an exception.simulation- IfSimulation.SIMULATEthen this should return the same result that a call withSimulation.ACTIONwould do, but without modifying anything else.- Returns:
 - A new, independent 
ItemStackthat was extracted. 
 - 
getPureInsertable
- Specified by:
 getPureInsertablein interfaceItemInsertable- Returns:
 - An object that only implements 
ItemInsertable, and does not expose any of the other modification methods that sibling or subclasses offer (likeItemExtractableorGroupedItemInv. 
 - 
getPureExtractable
- Specified by:
 getPureExtractablein interfaceItemExtractable- Returns:
 - An object that only implements 
ItemExtractable, and does not expose any of the other modification methods that sibling or subclasses offer (likeItemInsertableorGroupedItemInv. 
 - 
toString
public java.lang.String toString()- Overrides:
 toStringin classjava.lang.Enum<EmptyItemTransferable>
 
 -