Enum Class RejectingItemInsertable
- All Implemented Interfaces:
- ItemInsertable,- LimitedConsumer<net.minecraft.item.ItemStack>,- NullVariant,- Serializable,- Comparable<RejectingItemInsertable>,- Constable
public enum RejectingItemInsertable
extends Enum<RejectingItemInsertable>
implements ItemInsertable, NullVariant
An 
ItemInsertable that always refuses to accept any inserted ItemStack.- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum Constants
- 
Method SummaryModifier and TypeMethodDescriptionnet.minecraft.item.ItemStackattemptInsertion(net.minecraft.item.ItemStack stack, Simulation simulation)Inserts the given stack into this insertable, and returns the excess.Returns anItemFilterto determine ifItemInsertable.attemptInsertion(ItemStack, Simulation)will accept a stack.toString()static RejectingItemInsertableReturns the enum constant of this class with the specified name.static RejectingItemInsertable[]values()Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enumclone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOfMethods inherited from interface alexiil.mc.lib.attributes.item.ItemInsertablefiltered, insert, offer, offer, wouldAccept, wouldPartiallyAccept
- 
Enum Constant Details- 
NULL
- 
EXTRACTOR
 
- 
- 
Method Details- 
valuesReturns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
 
- 
valueOfReturns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
- IllegalArgumentException- if this enum class has no constant with the specified name
- NullPointerException- if the argument is null
 
- 
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.
 
- 
getInsertionFilterDescription 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.
 
- 
getPureInsertable- Specified by:
- getPureInsertablein interface- ItemInsertable
- Returns:
- An object that only implements ItemInsertable, and does not expose any of the other modification methods that sibling or subclasses offer (likeItemExtractableorGroupedItemInv.
 
- 
toString- Overrides:
- toStringin class- Enum<RejectingItemInsertable>
 
 
-