public static enum LoggerMessageProcessor.LogLevel extends Enum<LoggerMessageProcessor.LogLevel>
Modifier and Type | Method and Description |
---|---|
abstract boolean |
isEnabled(Log logger) |
abstract void |
log(Log logger,
Object object) |
static LoggerMessageProcessor.LogLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LoggerMessageProcessor.LogLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LoggerMessageProcessor.LogLevel ERROR
public static final LoggerMessageProcessor.LogLevel WARN
public static final LoggerMessageProcessor.LogLevel INFO
public static final LoggerMessageProcessor.LogLevel DEBUG
public static final LoggerMessageProcessor.LogLevel TRACE
public static LoggerMessageProcessor.LogLevel[] values()
for (LoggerMessageProcessor.LogLevel c : LoggerMessageProcessor.LogLevel.values()) System.out.println(c);
public static LoggerMessageProcessor.LogLevel 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 abstract boolean isEnabled(Log logger)
Copyright © 2003–2016 MuleSoft, Inc.. All rights reserved.