Package alexiil.mc.lib.attributes.fluid
Enum Class FluidVolumeUtil.ItemContainerStatus
java.lang.Object
java.lang.Enum<FluidVolumeUtil.ItemContainerStatus>
alexiil.mc.lib.attributes.fluid.FluidVolumeUtil.ItemContainerStatus
- All Implemented Interfaces:
- Serializable,- Comparable<FluidVolumeUtil.ItemContainerStatus>,- Constable
- Enclosing class:
- FluidVolumeUtil
public static enum FluidVolumeUtil.ItemContainerStatus
extends Enum<FluidVolumeUtil.ItemContainerStatus>
- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionIndicates that the givenItemStackcannot have fluid inserted/extracted to/from it.Indicates that we didn't check to see if the givenItemStackcould have fluid inserted/extracted to/from it.Indicates that the givenItemStackcould have fluid inserted/extracted to/from it.
- 
Method SummaryModifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static FluidVolumeUtil.ItemContainerStatus[]values()Returns an array containing the constants of this enum class, in the order they are declared.
- 
Enum Constant Details- 
INVALIDIndicates that the givenItemStackcannot have fluid inserted/extracted to/from it.
- 
NOT_CHECKEDIndicates that we didn't check to see if the givenItemStackcould have fluid inserted/extracted to/from it. This is only returned if the operation didn't need to be performed, either because the previous operation succeeded, or the tank passed didn't have an extractable/insertable object.
- 
VALIDIndicates that the givenItemStackcould have fluid inserted/extracted to/from it.
 
- 
- 
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
 
 
-