Record Class BiomeEffects.MoodSound
java.lang.Object
java.lang.Record
net.minestom.server.world.biome.BiomeEffects.MoodSound
- Enclosing class:
BiomeEffects
public static record BiomeEffects.MoodSound(SoundEvent sound, int tickDelay, int blockSearchExtent, double offset)
extends Record
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionMoodSound(SoundEvent 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.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
CODEC
-
-
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
-
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. -
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
-