public enum PacketViolationSeverity extends java.lang.Enum<PacketViolationSeverity>
| Enum Constant and Description |
|---|
FINAL_WARNING |
TERMINATING_CONNECTION |
UNKNOWN |
WARNING |
| Modifier and Type | Method and Description |
|---|---|
static PacketViolationSeverity |
valueOf(java.lang.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(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 null