public enum PacketViolationType extends Enum<PacketViolationType>
| Enum Constant and Description |
|---|
MALFORMED_PACKET |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static PacketViolationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PacketViolationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PacketViolationType UNKNOWN
public static final PacketViolationType MALFORMED_PACKET
public static PacketViolationType[] values()
for (PacketViolationType c : PacketViolationType.values()) System.out.println(c);
public static PacketViolationType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2018–2022 NukkitX. All rights reserved.