Record Class Music
java.lang.Object
java.lang.Record
net.minecraft.sounds.Music
public record Music(Holder<SoundEvent> sound, int minDelay, int maxDelay, boolean replaceCurrentMusic)
extends Record
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<Music> private final intThe field for themaxDelayrecord component.private final intThe field for theminDelayrecord component.private final booleanThe field for thereplaceCurrentMusicrecord component.private final Holder<SoundEvent> The field for thesoundrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionMusic(Holder<SoundEvent> sound, int minDelay, int maxDelay, boolean replaceCurrentMusic) Creates an instance of aMusicrecord 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.intmaxDelay()Returns the value of themaxDelayrecord component.intminDelay()Returns the value of theminDelayrecord component.booleanReturns the value of thereplaceCurrentMusicrecord component.sound()Returns the value of thesoundrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
sound
The field for thesoundrecord component. -
minDelay
private final int minDelayThe field for theminDelayrecord component. -
maxDelay
private final int maxDelayThe field for themaxDelayrecord component. -
replaceCurrentMusic
private final boolean replaceCurrentMusicThe field for thereplaceCurrentMusicrecord component. -
CODEC
-
-
Constructor Details
-
Music
Creates an instance of aMusicrecord class.- Parameters:
sound- the value for thesoundrecord componentminDelay- the value for theminDelayrecord componentmaxDelay- the value for themaxDelayrecord componentreplaceCurrentMusic- the value for thereplaceCurrentMusicrecord 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
-
minDelay
public int minDelay()Returns the value of theminDelayrecord component.- Returns:
- the value of the
minDelayrecord component
-
maxDelay
public int maxDelay()Returns the value of themaxDelayrecord component.- Returns:
- the value of the
maxDelayrecord component
-
replaceCurrentMusic
public boolean replaceCurrentMusic()Returns the value of thereplaceCurrentMusicrecord component.- Returns:
- the value of the
replaceCurrentMusicrecord component
-