Record Class JukeboxPlayable.JukeboxSong
java.lang.Object
java.lang.Record
com.viaversion.viaversion.api.minecraft.item.data.JukeboxPlayable.JukeboxSong
- All Implemented Interfaces:
Rewritable
- Enclosing class:
- JukeboxPlayable
public static record JukeboxPlayable.JukeboxSong(Holder<SoundEvent> soundEvent, com.viaversion.nbt.tag.Tag description, float lengthInSeconds, int comparatorOutput)
extends Record
implements Rewritable
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionJukeboxSong(Holder<SoundEvent> soundEvent, com.viaversion.nbt.tag.Tag description, float lengthInSeconds, int comparatorOutput) Creates an instance of aJukeboxSongrecord class. -
Method Summary
Modifier and TypeMethodDescriptionintReturns the value of thecomparatorOutputrecord component.com.viaversion.nbt.tag.TagReturns the value of thedescriptionrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.floatReturns the value of thelengthInSecondsrecord component.rewrite(UserConnection connection, Protocol<?, ?, ?, ?> protocol, boolean clientbound) Rewrites the object to a different version, may return self or a new object.Returns the value of thesoundEventrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
TYPE
-
-
Constructor Details
-
JukeboxSong
public JukeboxSong(Holder<SoundEvent> soundEvent, com.viaversion.nbt.tag.Tag description, float lengthInSeconds, int comparatorOutput) Creates an instance of aJukeboxSongrecord class.- Parameters:
soundEvent- the value for thesoundEventrecord componentdescription- the value for thedescriptionrecord componentlengthInSeconds- the value for thelengthInSecondsrecord componentcomparatorOutput- the value for thecomparatorOutputrecord component
-
-
Method Details
-
rewrite
public JukeboxPlayable.JukeboxSong rewrite(UserConnection connection, Protocol<?, ?, ?, ?> protocol, boolean clientbound) Description copied from interface:RewritableRewrites the object to a different version, may return self or a new object.- Specified by:
rewritein interfaceRewritable- Parameters:
connection- user connectionprotocol- protocolclientbound- whether it should be rewritten client- or serverbound- Returns:
- rewritten object, may be (modified or unmodified) self or a new object
-
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 '=='. -
soundEvent
Returns the value of thesoundEventrecord component.- Returns:
- the value of the
soundEventrecord component
-
description
public com.viaversion.nbt.tag.Tag description()Returns the value of thedescriptionrecord component.- Returns:
- the value of the
descriptionrecord component
-
lengthInSeconds
public float lengthInSeconds()Returns the value of thelengthInSecondsrecord component.- Returns:
- the value of the
lengthInSecondsrecord component
-
comparatorOutput
public int comparatorOutput()Returns the value of thecomparatorOutputrecord component.- Returns:
- the value of the
comparatorOutputrecord component
-