Record Class ClientUpdateSignPacket
java.lang.Object
java.lang.Record
net.minestom.server.network.packet.client.play.ClientUpdateSignPacket
- All Implemented Interfaces:
ClientPacket
public record ClientUpdateSignPacket(@NotNull Point blockPosition, boolean isFrontText, @NotNull List<String> lines)
extends Record
implements ClientPacket
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionClientUpdateSignPacket
(@NotNull Point blockPosition, boolean isFrontText, @NotNull List<String> lines) Creates an instance of aClientUpdateSignPacket
record class. -
Method Summary
Modifier and TypeMethodDescription@NotNull Point
Returns the value of theblockPosition
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.boolean
Returns the value of theisFrontText
record component.lines()
Returns the value of thelines
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
SERIALIZER
-
-
Constructor Details
-
ClientUpdateSignPacket
public ClientUpdateSignPacket(@NotNull @NotNull Point blockPosition, boolean isFrontText, @NotNull @NotNull List<String> lines) Creates an instance of aClientUpdateSignPacket
record class.- Parameters:
blockPosition
- the value for theblockPosition
record componentisFrontText
- the value for theisFrontText
record componentlines
- the value for thelines
record component
-
-
Method Details
-
toString
-
hashCode
-
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 thecompare
method from their corresponding wrapper classes. -
blockPosition
Returns the value of theblockPosition
record component.- Returns:
- the value of the
blockPosition
record component
-
isFrontText
public boolean isFrontText()Returns the value of theisFrontText
record component.- Returns:
- the value of the
isFrontText
record component
-
lines
-