public enum EventLogLevel extends Enum<EventLogLevel>
Modifier and Type | Method and Description |
---|---|
org.jboss.logging.Logger.Level |
toLoggerLevel() |
static EventLogLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EventLogLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventLogLevel INFO
public static final EventLogLevel WARN
public static final EventLogLevel ERROR
public static final EventLogLevel FATAL
public static EventLogLevel[] values()
for (EventLogLevel c : EventLogLevel.values()) System.out.println(c);
public static EventLogLevel 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 nullpublic org.jboss.logging.Logger.Level toLoggerLevel()
Copyright © 2016 JBoss, a division of Red Hat. All rights reserved.