Enum Class RejectingFluidInsertable
java.lang.Object
java.lang.Enum<RejectingFluidInsertable>
alexiil.mc.lib.attributes.fluid.impl.RejectingFluidInsertable
- All Implemented Interfaces:
FluidInsertable
,LimitedConsumer<FluidVolume>
,NullVariant
,Serializable
,Comparable<RejectingFluidInsertable>
,Constable
public enum RejectingFluidInsertable
extends Enum<RejectingFluidInsertable>
implements FluidInsertable, NullVariant
An
FluidInsertable
that always refuses to accept any inserted FluidVolume
.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionattemptInsertion
(FluidVolume stack, Simulation simulation) Inserts the given stack into this insertable, and returns the excess.Returns anFluidFilter
to determine ifFluidInsertable.attemptInsertion(FluidVolume, Simulation)
could ever accept a fluid.static RejectingFluidInsertable
Returns the enum constant of this class with the specified name.static RejectingFluidInsertable[]
values()
Returns an array containing the constants of this enum class, 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
-
NULL
-
EXTRACTOR
-
-
Method Details
-
values
Returns 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
-
valueOf
Returns 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 nameNullPointerException
- 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
.
-