Record Class DeclareCommandsPacket
java.lang.Object
java.lang.Record
net.minestom.server.network.packet.server.play.DeclareCommandsPacket
- All Implemented Interfaces:
SendablePacket
,ServerPacket
,ServerPacket.Play
public record DeclareCommandsPacket(@NotNull List<DeclareCommandsPacket.Node> nodes, int rootIndex)
extends Record
implements ServerPacket.Play
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final class
static enum
Nested classes/interfaces inherited from interface net.minestom.server.network.packet.server.ServerPacket
ServerPacket.ComponentHolding, ServerPacket.Configuration, ServerPacket.Login, ServerPacket.Play, ServerPacket.Status
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int
static final int
static final int
static final int
static final int
static final NetworkBuffer.Type
<DeclareCommandsPacket> -
Constructor Summary
ConstructorsConstructorDescriptionDeclareCommandsPacket
(@NotNull List<DeclareCommandsPacket.Node> nodes, int rootIndex) Creates an instance of aDeclareCommandsPacket
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.static byte
getFlag
(@NotNull DeclareCommandsPacket.NodeType type, boolean executable, boolean redirect, boolean suggestionType) final int
hashCode()
Returns a hash code value for this object.@NotNull List
<DeclareCommandsPacket.Node> nodes()
Returns the value of thenodes
record component.int
Returns the value of therootIndex
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
MAX_NODES
public static final int MAX_NODES- See Also:
-
SERIALIZER
-
NODE_TYPE
public static final int NODE_TYPE- See Also:
-
IS_EXECUTABLE
public static final int IS_EXECUTABLE- See Also:
-
HAS_REDIRECT
public static final int HAS_REDIRECT- See Also:
-
HAS_SUGGESTION_TYPE
public static final int HAS_SUGGESTION_TYPE- See Also:
-
-
Constructor Details
-
DeclareCommandsPacket
public DeclareCommandsPacket(@NotNull @NotNull List<DeclareCommandsPacket.Node> nodes, int rootIndex) Creates an instance of aDeclareCommandsPacket
record class.- Parameters:
nodes
- the value for thenodes
record componentrootIndex
- the value for therootIndex
record component
-
-
Method Details
-
getFlag
public static byte getFlag(@NotNull @NotNull DeclareCommandsPacket.NodeType type, boolean executable, boolean redirect, boolean suggestionType) -
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. -
nodes
Returns the value of thenodes
record component.- Returns:
- the value of the
nodes
record component
-
rootIndex
public int rootIndex()Returns the value of therootIndex
record component.- Returns:
- the value of the
rootIndex
record component
-