Record Class AnvilRegionLoader.ChunkEntry
java.lang.Object
java.lang.Record
ru.dragonestia.msb3.api.world.loader.anvil.AnvilRegionLoader.ChunkEntry
- Enclosing class:
AnvilRegionLoader
public static record AnvilRegionLoader.ChunkEntry(int chunkX, int chunkZ, net.kyori.adventure.nbt.CompoundBinaryTag binaryData)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionChunkEntry(int chunkX, int chunkZ, net.kyori.adventure.nbt.CompoundBinaryTag binaryData) Creates an instance of aChunkEntryrecord class. -
Method Summary
Modifier and TypeMethodDescriptionnet.kyori.adventure.nbt.CompoundBinaryTagReturns the value of thebinaryDatarecord component.intchunkX()Returns the value of thechunkXrecord component.intchunkZ()Returns the value of thechunkZrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
ChunkEntry
public ChunkEntry(int chunkX, int chunkZ, net.kyori.adventure.nbt.CompoundBinaryTag binaryData) Creates an instance of aChunkEntryrecord class.- Parameters:
chunkX- the value for thechunkXrecord componentchunkZ- the value for thechunkZrecord componentbinaryData- the value for thebinaryDatarecord component
-
-
Method Details
-
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 '=='. -
chunkX
public int chunkX()Returns the value of thechunkXrecord component.- Returns:
- the value of the
chunkXrecord component
-
chunkZ
public int chunkZ()Returns the value of thechunkZrecord component.- Returns:
- the value of the
chunkZrecord component
-
binaryData
public net.kyori.adventure.nbt.CompoundBinaryTag binaryData()Returns the value of thebinaryDatarecord component.- Returns:
- the value of the
binaryDatarecord component
-