public enum PacketViolationSeverity extends Enum<PacketViolationSeverity>
| Enum Constant and Description |
|---|
FINAL_WARNING |
TERMINATING_CONNECTION |
UNKNOWN |
WARNING |
| Modifier and Type | Method and Description |
|---|---|
static PacketViolationSeverity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PacketViolationSeverity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PacketViolationSeverity UNKNOWN
public static final PacketViolationSeverity WARNING
public static final PacketViolationSeverity FINAL_WARNING
public static final PacketViolationSeverity TERMINATING_CONNECTION
public static PacketViolationSeverity[] values()
for (PacketViolationSeverity c : PacketViolationSeverity.values()) System.out.println(c);
public static PacketViolationSeverity 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.