public enum PacketViolationType extends java.lang.Enum<PacketViolationType>
| Enum Constant and Description |
|---|
MALFORMED_PACKET |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static PacketViolationType |
valueOf(java.lang.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(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