Package net.minecraft.world.item
Record Class JukeboxPlayable
java.lang.Object
java.lang.Record
net.minecraft.world.item.JukeboxPlayable
- All Implemented Interfaces:
TooltipProvider
public record JukeboxPlayable(EitherHolder<JukeboxSong> song, boolean showInTooltip)
extends Record
implements TooltipProvider
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<JukeboxPlayable> private final booleanThe field for theshowInTooltiprecord component.private final EitherHolder<JukeboxSong> The field for thesongrecord component.static final StreamCodec<RegistryFriendlyByteBuf, JukeboxPlayable> -
Constructor Summary
ConstructorsConstructorDescriptionJukeboxPlayable(EitherHolder<JukeboxSong> song, boolean showInTooltip) Creates an instance of aJukeboxPlayablerecord class. -
Method Summary
Modifier and TypeMethodDescriptionvoidaddToTooltip(Item.TooltipContext p_350489_, Consumer<Component> p_350818_, TooltipFlag p_350358_) final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.booleanReturns the value of theshowInTooltiprecord component.song()Returns the value of thesongrecord component.final StringtoString()Returns a string representation of this record class.static ItemInteractionResulttryInsertIntoJukebox(Level p_350560_, BlockPos p_350567_, ItemStack p_350531_, Player p_350807_) withTooltip(boolean p_350922_)
-
Field Details
-
song
The field for thesongrecord component. -
showInTooltip
private final boolean showInTooltipThe field for theshowInTooltiprecord component. -
CODEC
-
STREAM_CODEC
-
-
Constructor Details
-
JukeboxPlayable
Creates an instance of aJukeboxPlayablerecord class.- Parameters:
song- the value for thesongrecord componentshowInTooltip- the value for theshowInTooltiprecord component
-
-
Method Details
-
addToTooltip
public void addToTooltip(Item.TooltipContext p_350489_, Consumer<Component> p_350818_, TooltipFlag p_350358_) - Specified by:
addToTooltipin interfaceTooltipProvider
-
withTooltip
-
tryInsertIntoJukebox
public static ItemInteractionResult tryInsertIntoJukebox(Level p_350560_, BlockPos p_350567_, ItemStack p_350531_, Player p_350807_) -
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 thesongrecord component.- Returns:
- the value of the
songrecord component
-
showInTooltip
public boolean showInTooltip()Returns the value of theshowInTooltiprecord component.- Returns:
- the value of the
showInTooltiprecord component
-