Package vazkii.botania.common.entity
Record Class ManaSparkEntity.WandHud
java.lang.Object
java.lang.Record
vazkii.botania.common.entity.ManaSparkEntity.WandHud
- All Implemented Interfaces:
WandHUD
- Enclosing class:
ManaSparkEntity
public static record ManaSparkEntity.WandHud(ManaSparkEntity entity)
extends Record
implements WandHUD
-
Field Summary
-
Constructor Summary
ConstructorsConstructorDescriptionWandHud(ManaSparkEntity entity) Creates an instance of aWandHudrecord class. -
Method Summary
Modifier and TypeMethodDescriptionentity()Returns the value of theentityrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.voidrenderHUD(net.minecraft.client.gui.GuiGraphics gui, net.minecraft.client.Minecraft mc) final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
WandHud
Creates an instance of aWandHudrecord class.- Parameters:
entity- the value for theentityrecord component
-
-
Method Details
-
renderHUD
public void renderHUD(net.minecraft.client.gui.GuiGraphics gui, net.minecraft.client.Minecraft mc) -
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
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. All components in this record class are compared withObjects::equals(Object,Object). -
entity
Returns the value of theentityrecord component.- Returns:
- the value of the
entityrecord component
-