Record Class JukeboxPlayable
java.lang.Object
java.lang.Record
com.viaversion.viaversion.api.minecraft.item.data.JukeboxPlayable
- All Implemented Interfaces:
Rewritable
public record JukeboxPlayable(EitherHolder<JukeboxPlayable.JukeboxSong> song, boolean showInTooltip)
extends Record
implements Rewritable
-
Nested Class Summary
Nested Classes -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final Type<JukeboxPlayable>
static final Type<JukeboxPlayable>
-
Constructor Summary
ConstructorsConstructorDescriptionJukeboxPlayable
(EitherHolder<JukeboxPlayable.JukeboxSong> song, boolean showInTooltip) Creates an instance of aJukeboxPlayable
record class.JukeboxPlayable
(Holder<JukeboxPlayable.JukeboxSong> song, boolean showInTooltip) JukeboxPlayable
(String resourceKey, boolean showInTooltip) -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.rewrite
(UserConnection connection, Protocol<?, ?, ?, ?> protocol, boolean clientbound) Rewrites the object to a different version, may return self or a new object.boolean
Returns the value of theshowInTooltip
record component.song()
Returns the value of thesong
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
TYPE1_21
-
TYPE1_21_5
-
-
Constructor Details
-
JukeboxPlayable
-
JukeboxPlayable
-
JukeboxPlayable
Creates an instance of aJukeboxPlayable
record class.- Parameters:
song
- the value for thesong
record componentshowInTooltip
- the value for theshowInTooltip
record component
-
-
Method Details
-
rewrite
public JukeboxPlayable rewrite(UserConnection connection, Protocol<?, ?, ?, ?> protocol, boolean clientbound) Description copied from interface:Rewritable
Rewrites the object to a different version, may return self or a new object.- Specified by:
rewrite
in 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 '=='. -
song
Returns the value of thesong
record component.- Returns:
- the value of the
song
record component
-
showInTooltip
public boolean showInTooltip()Returns the value of theshowInTooltip
record component.- Returns:
- the value of the
showInTooltip
record component
-