|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<LogEvent>
it.jnrpe.events.LogEvent
public enum LogEvent
All the accepted Log Event types.
Enum Constant Summary | |
---|---|
DEBUG
Debug Log Event. |
|
ERROR
Error Log Event. |
|
FATAL
Fatal Log Event. |
|
INFO
Info Log Event. |
|
TRACE
Trace Log Event. |
|
WARNING
Warning Log Event. |
Method Summary | |
---|---|
static LogEvent |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static LogEvent[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final LogEvent TRACE
public static final LogEvent DEBUG
public static final LogEvent INFO
public static final LogEvent WARNING
public static final LogEvent ERROR
public static final LogEvent FATAL
Method Detail |
---|
public static LogEvent[] values()
for (LogEvent c : LogEvent.values()) System.out.println(c);
public static LogEvent valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |