public enum SyslogFacilityType extends Enum<SyslogFacilityType>
| Enum Constant and Description |
|---|
CLOCK_DAEMON |
CLOCK_DAEMON2 |
FTP_DAEMON |
KERNEL |
LINE_PRINTER |
LOCAL_USE_0 |
LOCAL_USE_1 |
LOCAL_USE_2 |
LOCAL_USE_3 |
LOCAL_USE_4 |
LOCAL_USE_5 |
LOCAL_USE_6 |
LOCAL_USE_7 |
LOG_ALERT |
LOG_AUDIT |
MAIL_SYSTEM |
NETWORK_NEWS |
NTP |
SECURITY |
SECURITY2 |
SYSLOGD |
SYSTEM_DAEMONS |
USER_LEVEL |
UUCP |
| Modifier and Type | Method and Description |
|---|---|
static SyslogFacilityType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SyslogFacilityType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SyslogFacilityType CLOCK_DAEMON
public static final SyslogFacilityType CLOCK_DAEMON2
public static final SyslogFacilityType FTP_DAEMON
public static final SyslogFacilityType KERNEL
public static final SyslogFacilityType LOCAL_USE_0
public static final SyslogFacilityType LOCAL_USE_1
public static final SyslogFacilityType LOCAL_USE_2
public static final SyslogFacilityType LOCAL_USE_3
public static final SyslogFacilityType LOCAL_USE_4
public static final SyslogFacilityType LOCAL_USE_5
public static final SyslogFacilityType LOCAL_USE_6
public static final SyslogFacilityType LOCAL_USE_7
public static final SyslogFacilityType LOG_ALERT
public static final SyslogFacilityType LOG_AUDIT
public static final SyslogFacilityType LINE_PRINTER
public static final SyslogFacilityType MAIL_SYSTEM
public static final SyslogFacilityType NETWORK_NEWS
public static final SyslogFacilityType NTP
public static final SyslogFacilityType SECURITY
public static final SyslogFacilityType SECURITY2
public static final SyslogFacilityType SYSLOGD
public static final SyslogFacilityType SYSTEM_DAEMONS
public static final SyslogFacilityType USER_LEVEL
public static final SyslogFacilityType UUCP
public static SyslogFacilityType[] values()
for (SyslogFacilityType c : SyslogFacilityType.values()) System.out.println(c);
public static SyslogFacilityType 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. All rights reserved.