Package net.minecraft.sound
Record Class MusicSound
java.lang.Object
java.lang.Record
net.minecraft.sound.MusicSound
- Record Components:
sound-minDelay-maxDelay-replaceCurrentMusic-
public record MusicSound(RegistryEntry<SoundEvent> sound, int minDelay, int maxDelay, boolean replaceCurrentMusic)
extends Record
- Mappings:
Namespace Name named net/minecraft/sound/MusicSoundintermediary net/minecraft/class_5195official bcbnamed soundintermediary comp_4358official bnamed minDelayintermediary comp_4359official cnamed maxDelayintermediary comp_4360official dnamed replaceCurrentMusicintermediary comp_4361official e
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<MusicSound> private final intThe field for themaxDelayrecord component.private final intThe field for theminDelayrecord component.private final booleanThe field for thereplaceCurrentMusicrecord component.private final RegistryEntry<SoundEvent> The field for thesoundrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionMusicSound(RegistryEntry<SoundEvent> sound, int minDelay, int maxDelay, boolean replaceCurrentMusic) Creates an instance of aMusicSoundrecord 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
- Mappings:
Namespace Name Mixin selector named CODECLnet/minecraft/sound/MusicSound;CODEC:Lcom/mojang/serialization/Codec;intermediary field_24627Lnet/minecraft/class_5195;field_24627:Lcom/mojang/serialization/Codec;official aLbcb;a:Lcom/mojang/serialization/Codec;
-
-
Constructor Details
-
MusicSound
public MusicSound(RegistryEntry<SoundEvent> sound, int minDelay, int maxDelay, boolean replaceCurrentMusic) Creates an instance of aMusicSoundrecord 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
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
-
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
-