public enum PacketDirection extends java.lang.Enum<PacketDirection>
| Enum Constant and Description |
|---|
CLIENT_BOUND
All packets sent by this channel are going to client.
|
SERVER_BOUND
All packets sent by this channel are going to server.
|
| Modifier and Type | Field and Description |
|---|---|
static io.netty.util.AttributeKey<PacketDirection> |
ATTRIBUTE |
| Modifier and Type | Method and Description |
|---|---|
org.cloudburstmc.protocol.bedrock.data.PacketRecipient |
getInbound() |
org.cloudburstmc.protocol.bedrock.data.PacketRecipient |
getOutbound() |
static PacketDirection |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PacketDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PacketDirection CLIENT_BOUND
public static final PacketDirection SERVER_BOUND
public static final io.netty.util.AttributeKey<PacketDirection> ATTRIBUTE
public static PacketDirection[] values()
for (PacketDirection c : PacketDirection.values()) System.out.println(c);
public static PacketDirection valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic org.cloudburstmc.protocol.bedrock.data.PacketRecipient getInbound()
public org.cloudburstmc.protocol.bedrock.data.PacketRecipient getOutbound()