Record Class IFluidHelper.FluidInteractionResult
java.lang.Object
java.lang.Record
de.cech12.bucketlib.platform.services.IFluidHelper.FluidInteractionResult
- Enclosing interface:
IFluidHelper
public static record IFluidHelper.FluidInteractionResult(boolean success, net.minecraft.world.item.ItemStack stack)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionFluidInteractionResult(boolean success, net.minecraft.world.item.ItemStack stack) Creates an instance of aFluidInteractionResultrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.net.minecraft.world.item.ItemStackstack()Returns the value of thestackrecord component.booleansuccess()Returns the value of thesuccessrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
FluidInteractionResult
public FluidInteractionResult(boolean success, net.minecraft.world.item.ItemStack stack) Creates an instance of aFluidInteractionResultrecord class.- Parameters:
success- the value for thesuccessrecord componentstack- the value for thestackrecord component
-
-
Method Details
-
toString
-
hashCode
-
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with thecomparemethod from their corresponding wrapper classes. -
success
public boolean success()Returns the value of thesuccessrecord component.- Returns:
- the value of the
successrecord component
-
stack
public net.minecraft.world.item.ItemStack stack()Returns the value of thestackrecord component.- Returns:
- the value of the
stackrecord component
-