public enum AllowableDeviations extends Enum<AllowableDeviations>
| Enum Constant and Description |
|---|
NONE
Properly formed RFC 5424 Syslog.
|
PRIORITY
RFC 5424 Syslog that does not have PRIORITY.
|
VERSION
RFC 5424 Syslog that does not have VERSION.
|
| Modifier and Type | Method and Description |
|---|---|
static AllowableDeviations |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AllowableDeviations[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AllowableDeviations NONE
public static final AllowableDeviations PRIORITY
public static final AllowableDeviations VERSION
public static AllowableDeviations[] values()
for (AllowableDeviations c : AllowableDeviations.values()) System.out.println(c);
public static AllowableDeviations 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 © 2021 palindromicity. All rights reserved.