public static enum LogEvent.Level extends Enum<LogEvent.Level>
ERROR
, WARN
, INFO
DEBUG.Modifier and Type | Method and Description |
---|---|
static LogEvent.Level |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LogEvent.Level[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LogEvent.Level ERROR
public static final LogEvent.Level WARN
public static final LogEvent.Level INFO
public static final LogEvent.Level DEBUG
public static LogEvent.Level[] values()
for (LogEvent.Level c : LogEvent.Level.values()) System.out.println(c);
public static LogEvent.Level 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 © 2008-2013 Hippo B.V. (http://www.onehippo.com). All Rights Reserved.