Package net.minestom.server.world.biomes
Record Class BiomeEffects.MoodSound
java.lang.Object
java.lang.Record
net.minestom.server.world.biomes.BiomeEffects.MoodSound
- Enclosing class:
BiomeEffects
public static record BiomeEffects.MoodSound(NamespaceID sound, int tickDelay, int blockSearchExtent, double offset)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionMoodSound(NamespaceID sound, int tickDelay, int blockSearchExtent, double offset) Creates an instance of aMoodSoundrecord class. -
Method Summary
Modifier and TypeMethodDescriptionintReturns the value of theblockSearchExtentrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.doubleoffset()Returns the value of theoffsetrecord component.sound()Returns the value of thesoundrecord component.intReturns the value of thetickDelayrecord component.@NotNull org.jglrxavpok.hephaistos.nbt.NBTCompoundtoNbt()final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
MoodSound
Creates an instance of aMoodSoundrecord class.- Parameters:
sound- the value for thesoundrecord componenttickDelay- the value for thetickDelayrecord componentblockSearchExtent- the value for theblockSearchExtentrecord componentoffset- the value for theoffsetrecord component
-
-
Method Details
-
toNbt
@NotNull public @NotNull org.jglrxavpok.hephaistos.nbt.NBTCompound toNbt() -
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
sound
Returns the value of thesoundrecord component.- Returns:
- the value of the
soundrecord component
-
tickDelay
public int tickDelay()Returns the value of thetickDelayrecord component.- Returns:
- the value of the
tickDelayrecord component
-
blockSearchExtent
public int blockSearchExtent()Returns the value of theblockSearchExtentrecord component.- Returns:
- the value of the
blockSearchExtentrecord component
-
offset
public double offset()Returns the value of theoffsetrecord component.- Returns:
- the value of the
offsetrecord component
-