org.wildfly.extras.creaper.commands.auditlog
Enum SyslogFacilityType

java.lang.Object
  extended by java.lang.Enum<SyslogFacilityType>
      extended by org.wildfly.extras.creaper.commands.auditlog.SyslogFacilityType
All Implemented Interfaces:
Serializable, Comparable<SyslogFacilityType>

public enum SyslogFacilityType
extends Enum<SyslogFacilityType>


Enum Constant Summary
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
           
 
Method Summary
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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

CLOCK_DAEMON

public static final SyslogFacilityType CLOCK_DAEMON

CLOCK_DAEMON2

public static final SyslogFacilityType CLOCK_DAEMON2

FTP_DAEMON

public static final SyslogFacilityType FTP_DAEMON

KERNEL

public static final SyslogFacilityType KERNEL

LOCAL_USE_0

public static final SyslogFacilityType LOCAL_USE_0

LOCAL_USE_1

public static final SyslogFacilityType LOCAL_USE_1

LOCAL_USE_2

public static final SyslogFacilityType LOCAL_USE_2

LOCAL_USE_3

public static final SyslogFacilityType LOCAL_USE_3

LOCAL_USE_4

public static final SyslogFacilityType LOCAL_USE_4

LOCAL_USE_5

public static final SyslogFacilityType LOCAL_USE_5

LOCAL_USE_6

public static final SyslogFacilityType LOCAL_USE_6

LOCAL_USE_7

public static final SyslogFacilityType LOCAL_USE_7

LOG_ALERT

public static final SyslogFacilityType LOG_ALERT

LOG_AUDIT

public static final SyslogFacilityType LOG_AUDIT

LINE_PRINTER

public static final SyslogFacilityType LINE_PRINTER

MAIL_SYSTEM

public static final SyslogFacilityType MAIL_SYSTEM

NETWORK_NEWS

public static final SyslogFacilityType NETWORK_NEWS

NTP

public static final SyslogFacilityType NTP

SECURITY

public static final SyslogFacilityType SECURITY

SECURITY2

public static final SyslogFacilityType SECURITY2

SYSLOGD

public static final SyslogFacilityType SYSLOGD

SYSTEM_DAEMONS

public static final SyslogFacilityType SYSTEM_DAEMONS

USER_LEVEL

public static final SyslogFacilityType USER_LEVEL

UUCP

public static final SyslogFacilityType UUCP
Method Detail

values

public static SyslogFacilityType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (SyslogFacilityType c : SyslogFacilityType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static SyslogFacilityType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2016. All rights reserved.