Package net.minecraft.sounds
Record Class Music
java.lang.Object
java.lang.Record
net.minecraft.sounds.Music
public record Music(Holder<SoundEvent> event, int minDelay, int maxDelay, boolean replaceCurrentMusic)
extends Record
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<Music> private final Holder<SoundEvent> The field for theeventrecord component.private final intThe field for themaxDelayrecord component.private final intThe field for theminDelayrecord component.private final booleanThe field for thereplaceCurrentMusicrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionMusic(Holder<SoundEvent> event, 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.event()Returns the value of theeventrecord component.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.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
event
The field for theeventrecord 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:
event- the value for theeventrecord 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 '=='. -
event
Returns the value of theeventrecord component.- Returns:
- the value of the
eventrecord 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
-