Record Class MapDataPacket.ColorContent
java.lang.Object
java.lang.Record
net.minestom.server.network.packet.server.play.MapDataPacket.ColorContent
- All Implemented Interfaces:
NetworkBuffer.Writer
- Enclosing class:
MapDataPacket
public static record MapDataPacket.ColorContent(byte columns, byte rows, byte x, byte z, byte @NotNull [] data)
extends Record
implements NetworkBuffer.Writer
-
Constructor Summary
ConstructorsConstructorDescriptionColorContent(byte columns, byte rows, byte x, byte z, byte @NotNull [] data) Creates an instance of aColorContentrecord class.ColorContent(@NotNull NetworkBuffer reader) -
Method Summary
Modifier and TypeMethodDescriptionbytecolumns()Returns the value of thecolumnsrecord component.byte @NotNull []data()Returns the value of thedatarecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.byterows()Returns the value of therowsrecord component.final StringtoString()Returns a string representation of this record class.voidwrite(@NotNull NetworkBuffer writer) bytex()Returns the value of thexrecord component.bytez()Returns the value of thezrecord component.
-
Constructor Details
-
ColorContent
-
ColorContent
public ColorContent(byte columns, byte rows, byte x, byte z, byte @NotNull [] data) Creates an instance of aColorContentrecord class.- Parameters:
columns- the value for thecolumnsrecord componentrows- the value for therowsrecord componentx- the value for thexrecord componentz- the value for thezrecord componentdata- the value for thedatarecord component
-
-
Method Details
-
write
- Specified by:
writein interfaceNetworkBuffer.Writer
-
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 '=='. -
columns
public byte columns()Returns the value of thecolumnsrecord component.- Returns:
- the value of the
columnsrecord component
-
rows
public byte rows()Returns the value of therowsrecord component.- Returns:
- the value of the
rowsrecord component
-
x
public byte x()Returns the value of thexrecord component.- Returns:
- the value of the
xrecord component
-
z
public byte z()Returns the value of thezrecord component.- Returns:
- the value of the
zrecord component
-
data
public byte @NotNull [] data()Returns the value of thedatarecord component.- Returns:
- the value of the
datarecord component
-