Class FilteredItemExtractable
java.lang.Object
alexiil.mc.lib.attributes.item.impl.FilteredItemExtractable
- All Implemented Interfaces:
ItemExtractable
public final class FilteredItemExtractable extends java.lang.Object implements ItemExtractable
-
Field Summary
Fields Modifier and Type Field Description ItemFilterfilter -
Constructor Summary
Constructors Constructor Description FilteredItemExtractable(ItemExtractable real, ItemFilter filter) -
Method Summary
Modifier and Type Method Description net.minecraft.item.ItemStackattemptAnyExtraction(int maxAmount, Simulation simulation)net.minecraft.item.ItemStackattemptExtraction(ItemFilter filter, int maxAmount, Simulation simulation)ItemExtractablefiltered(ItemFilter filter)Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface alexiil.mc.lib.attributes.item.ItemExtractable
couldExtractAnything, extract, extract, extract, getPureExtractable
-
Field Details
-
Constructor Details
-
Method Details
-
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.
-
attemptAnyExtraction
Description copied from interface:ItemExtractable- Specified by:
attemptAnyExtractionin interfaceItemExtractable
-
filtered
- Specified by:
filteredin interfaceItemExtractable- Returns:
- A new
ItemExtractablethat has an additional filter applied to limit the items extracted from it.
-