Record Class Instrument1_21_2
java.lang.Object
java.lang.Record
com.viaversion.viaversion.api.minecraft.item.data.Instrument1_21_2
- All Implemented Interfaces:
Copyable,Rewritable
public record Instrument1_21_2(Holder<SoundEvent> soundEvent, float useDuration, float range, com.viaversion.nbt.tag.Tag description)
extends Record
implements Copyable, Rewritable
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final EitherHolderType<Instrument1_21_2>static final HolderType<Instrument1_21_2> -
Constructor Summary
ConstructorsConstructorDescriptionInstrument1_21_2(Holder<SoundEvent> soundEvent, float useDuration, float range, com.viaversion.nbt.tag.Tag description) Creates an instance of aInstrument1_21_2record class. -
Method Summary
Modifier and TypeMethodDescriptioncopy()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.floatrange()Returns the value of therangerecord 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.floatReturns the value of theuseDurationrecord component.
-
Field Details
-
TYPE
-
EITHER_HOLDER_TYPE
-
-
Constructor Details
-
Instrument1_21_2
public Instrument1_21_2(Holder<SoundEvent> soundEvent, float useDuration, float range, com.viaversion.nbt.tag.Tag description) Creates an instance of aInstrument1_21_2record class.- Parameters:
soundEvent- the value for thesoundEventrecord componentuseDuration- the value for theuseDurationrecord componentrange- the value for therangerecord componentdescription- the value for thedescriptionrecord component
-
-
Method Details
-
rewrite
public Instrument1_21_2 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
-
copy
-
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
-
useDuration
public float useDuration()Returns the value of theuseDurationrecord component.- Returns:
- the value of the
useDurationrecord component
-
range
public float range()Returns the value of therangerecord component.- Returns:
- the value of the
rangerecord component
-
description
public com.viaversion.nbt.tag.Tag description()Returns the value of thedescriptionrecord component.- Returns:
- the value of the
descriptionrecord component
-