Class SimpleFixedFluidInvInsertable
java.lang.Object
alexiil.mc.lib.attributes.fluid.impl.SimpleFixedFluidInvInsertable
- All Implemented Interfaces:
FluidInsertable
,LimitedConsumer<FluidVolume>
@Deprecated public final class SimpleFixedFluidInvInsertable extends java.lang.Object implements FluidInsertable
Deprecated.
This has been replaced with
FixedFluidInv.getMappedInv(int...)
followed by
FixedFluidInv.getInsertable()
. (And optionally FluidInsertable.getPureInsertable()
if you
only want to expose it as an insertable).-
Constructor Summary
Constructors Constructor Description SimpleFixedFluidInvInsertable(FixedFluidInv inv, int[] tanks)
Deprecated. -
Method Summary
Modifier and Type Method Description FluidVolume
attemptInsertion(FluidVolume fluid, Simulation simulation)
Deprecated.Inserts the given stack into this insertable, and returns the excess.FluidFilter
getInsertionFilter()
Deprecated.Returns anFluidFilter
to determine ifFluidInsertable.attemptInsertion(FluidVolume, Simulation)
could ever accept a fluid.FluidAmount
getMinimumAcceptedAmount()
Deprecated.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface alexiil.mc.lib.attributes.fluid.FluidInsertable
filtered, getPureInsertable, insert, offer, offer, wouldAccept
-
Constructor Details
-
SimpleFixedFluidInvInsertable
Deprecated.
-
-
Method Details
-
attemptInsertion
Deprecated.Description copied from interface:FluidInsertable
Inserts the given stack into this insertable, and returns the excess.- Specified by:
attemptInsertion
in interfaceFluidInsertable
- Parameters:
fluid
- The incoming fluid. Must not be modified by this call.simulation
- IfSimulation.SIMULATE
then this shouldn't modify anything.- Returns:
- the excess
FluidVolume
that wasn't accepted. This will be independent of this insertable, however it might be the given object instead of a completely new object.
-
getMinimumAcceptedAmount
Deprecated.- Specified by:
getMinimumAcceptedAmount
in interfaceFluidInsertable
- Returns:
- The minimum amount of fluid that
FluidInsertable.attemptInsertion(FluidVolume, Simulation)
will actually accept. Note that this only provides a guarantee thatfluid volumes
with anamount
less than this will never be accepted.A null return value indicates that there is no minimum value.
-
getInsertionFilter
Deprecated.Description copied from interface:FluidInsertable
Returns anFluidFilter
to determine ifFluidInsertable.attemptInsertion(FluidVolume, Simulation)
could ever accept a fluid. The default implementation is to returnConstantFluidFilter.ANYTHING
, and so it is recommended that custom insertables override this to return a more accurate filter.- Specified by:
getInsertionFilter
in interfaceFluidInsertable
- Returns:
- A filter to determine if the given fluid could ever be inserted.
-