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 SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum Constants
- 
Method SummaryModifier and TypeMethodDescriptionattemptInsertion(FluidVolume stack, Simulation simulation)Inserts the given stack into this insertable, and returns the excess.Returns anFluidFilterto determine ifFluidInsertable.attemptInsertion(FluidVolume, Simulation)could ever accept a fluid.static RejectingFluidInsertableReturns 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.Enumclone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfMethods inherited from interface alexiil.mc.lib.attributes.fluid.FluidInsertablefiltered, getMinimumAcceptedAmount, insert, offer, offer, wouldAccept
- 
Enum Constant Details- 
NULL
- 
EXTRACTOR
 
- 
- 
Method Details- 
valuesReturns 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
 
- 
valueOfReturns 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 name
- NullPointerException- if the argument is null
 
- 
attemptInsertionDescription copied from interface:FluidInsertableInserts the given stack into this insertable, and returns the excess.- Specified by:
- attemptInsertionin interface- FluidInsertable
- Parameters:
- stack- The incoming fluid. Must not be modified by this call.
- simulation- If- Simulation.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.
 
- 
getInsertionFilterDescription 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 interface- FluidInsertable
- Returns:
- A filter to determine if the given fluid could ever be inserted.
 
- 
getPureInsertable- Specified by:
- getPureInsertablein interface- FluidInsertable
- Returns:
- An object that only implements FluidInsertable, and does not expose any of the other modification methods that sibling or subclasses offer (likeFluidExtractableorGroupedFluidInv.
 
 
-