Record Class BlockEntityData
java.lang.Object
java.lang.Record
com.viaversion.viaversion.api.minecraft.item.data.BlockEntityData
- All Implemented Interfaces:
Rewritable
public record BlockEntityData(int type, com.viaversion.nbt.tag.CompoundTag tag)
extends Record
implements Rewritable
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionBlockEntityData(int type, com.viaversion.nbt.tag.CompoundTag tag) Creates an instance of aBlockEntityDatarecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()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.com.viaversion.nbt.tag.CompoundTagtag()Returns the value of thetagrecord component.final StringtoString()Returns a string representation of this record class.inttype()Returns the value of thetyperecord component.
-
Field Details
-
TYPE
-
-
Constructor Details
-
BlockEntityData
public BlockEntityData(int type, com.viaversion.nbt.tag.CompoundTag tag) Creates an instance of aBlockEntityDatarecord class.- Parameters:
type- the value for thetyperecord componenttag- the value for thetagrecord component
-
-
Method Details
-
rewrite
public BlockEntityData 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 '=='. -
type
public int type()Returns the value of thetyperecord component.- Returns:
- the value of the
typerecord component
-
tag
public com.viaversion.nbt.tag.CompoundTag tag()Returns the value of thetagrecord component.- Returns:
- the value of the
tagrecord component
-