Class SimpleFixedFluidInvInsertable
java.lang.Object
alexiil.mc.lib.attributes.fluid.impl.SimpleFixedFluidInvInsertable
- All Implemented Interfaces:
 FluidInsertable,LimitedConsumer<FluidVolume>
@Deprecated(since="0.4.0",
            forRemoval=true)
public final class SimpleFixedFluidInvInsertable
extends Object
implements FluidInsertable
Deprecated, for removal: This API element is subject to removal in a future version.
- 
Constructor Summary
ConstructorsConstructorDescriptionSimpleFixedFluidInvInsertable(FixedFluidInv inv, int[] tanks)Deprecated, for removal: This API element is subject to removal in a future version. - 
Method Summary
Modifier and TypeMethodDescriptionattemptInsertion(FluidVolume fluid, 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 anFluidFilterto determine ifFluidInsertable.attemptInsertion(FluidVolume, Simulation)could ever accept a fluid.Deprecated, for removal: This API element is subject to removal in a future version.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.fluid.FluidInsertable
filtered, getPureInsertable, insert, offer, offer, wouldAccept 
- 
Constructor Details
- 
SimpleFixedFluidInvInsertable
Deprecated, for removal: This API element is subject to removal in a future version. 
 - 
 - 
Method Details
- 
attemptInsertion
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:FluidInsertableInserts the given stack into this insertable, and returns the excess.- Specified by:
 attemptInsertionin interfaceFluidInsertable- Parameters:
 fluid- The incoming fluid. Must not be modified by this call.simulation- IfSimulation.SIMULATEthen this shouldn't modify anything.- Returns:
 - the excess 
FluidVolumethat 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, for removal: This API element is subject to removal in a future version.- Specified by:
 getMinimumAcceptedAmountin interfaceFluidInsertable- Returns:
 - The minimum amount of fluid that 
FluidInsertable.attemptInsertion(FluidVolume, Simulation)will actually accept. Note that this only provides a guarantee thatfluid volumeswith anamountless than this will never be accepted.A null return value indicates that there is no minimum value.
 
 - 
getInsertionFilter
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:FluidInsertableReturns anFluidFilterto 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:
 getInsertionFilterin interfaceFluidInsertable- Returns:
 - A filter to determine if the given fluid could ever be inserted.
 
 
 - 
 
FixedFluidInv.getMappedInv(int...)followed byFixedFluidInv.getInsertable(). (And optionallyFluidInsertable.getPureInsertable()if you only want to expose it as an insertable).