Enum RejectingFluidInsertable
java.lang.Object
java.lang.Enum<RejectingFluidInsertable>
alexiil.mc.lib.attributes.fluid.impl.RejectingFluidInsertable
- All Implemented Interfaces:
FluidInsertable
,LimitedConsumer<FluidVolume>
,NullVariant
,java.io.Serializable
,java.lang.Comparable<RejectingFluidInsertable>
,java.lang.constant.Constable
public enum RejectingFluidInsertable extends java.lang.Enum<RejectingFluidInsertable> implements FluidInsertable, NullVariant
An
FluidInsertable
that always refuses to accept any inserted FluidVolume
.-
Nested Class Summary
-
Enum Constant Summary
-
Method Summary
Modifier and Type Method Description FluidVolume
attemptInsertion(FluidVolume stack, Simulation simulation)
Inserts the given stack into this insertable, and returns the excess.FluidFilter
getInsertionFilter()
Returns anFluidFilter
to determine ifFluidInsertable.attemptInsertion(FluidVolume, Simulation)
could ever accept a fluid.FluidInsertable
getPureInsertable()
static RejectingFluidInsertable
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static RejectingFluidInsertable[]
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, toString, valueOf
Methods inherited from interface alexiil.mc.lib.attributes.fluid.FluidInsertable
filtered, getMinimumAcceptedAmount, insert, offer, offer, wouldAccept
-
Enum Constant Details
-
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
Description copied from interface:FluidInsertable
Inserts the given stack into this insertable, and returns the excess.- Specified by:
attemptInsertion
in interfaceFluidInsertable
- Parameters:
stack
- 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.
-
getInsertionFilter
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.
-
getPureInsertable
- Specified by:
getPureInsertable
in interfaceFluidInsertable
- Returns:
- An object that only implements
FluidInsertable
, and does not expose any of the other modification methods that sibling or subclasses offer (likeFluidExtractable
orGroupedFluidInv
.
-