Record Class ClientSetRecipeBookStatePacket
java.lang.Object
java.lang.Record
net.minestom.server.network.packet.client.play.ClientSetRecipeBookStatePacket
- All Implemented Interfaces:
ClientPacket
public record ClientSetRecipeBookStatePacket(ClientSetRecipeBookStatePacket.BookType bookType, boolean bookOpen, boolean filterActive)
extends Record
implements ClientPacket
-
Nested Class Summary
Nested Classes -
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionClientSetRecipeBookStatePacket(ClientSetRecipeBookStatePacket.BookType bookType, boolean bookOpen, boolean filterActive) Creates an instance of aClientSetRecipeBookStatePacketrecord class. -
Method Summary
Modifier and TypeMethodDescriptionbooleanbookOpen()Returns the value of thebookOpenrecord component.bookType()Returns the value of thebookTyperecord component.final booleanIndicates whether some other object is "equal to" this one.booleanReturns the value of thefilterActiverecord component.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
SERIALIZER
-
-
Constructor Details
-
ClientSetRecipeBookStatePacket
public ClientSetRecipeBookStatePacket(ClientSetRecipeBookStatePacket.BookType bookType, boolean bookOpen, boolean filterActive) Creates an instance of aClientSetRecipeBookStatePacketrecord class.- Parameters:
bookType- the value for thebookTyperecord componentbookOpen- the value for thebookOpenrecord componentfilterActive- the value for thefilterActiverecord 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 thecomparemethod from their corresponding wrapper classes. -
bookType
Returns the value of thebookTyperecord component.- Returns:
- the value of the
bookTyperecord component
-
bookOpen
public boolean bookOpen()Returns the value of thebookOpenrecord component.- Returns:
- the value of the
bookOpenrecord component
-
filterActive
public boolean filterActive()Returns the value of thefilterActiverecord component.- Returns:
- the value of the
filterActiverecord component
-