org.mule.api.processor
Enum LoggerMessageProcessor.LogLevel
java.lang.Object
java.lang.Enum<LoggerMessageProcessor.LogLevel>
org.mule.api.processor.LoggerMessageProcessor.LogLevel
- All Implemented Interfaces:
- Serializable, Comparable<LoggerMessageProcessor.LogLevel>
- Enclosing class:
- LoggerMessageProcessor
public static enum LoggerMessageProcessor.LogLevel
- extends Enum<LoggerMessageProcessor.LogLevel>
ERROR
public static final LoggerMessageProcessor.LogLevel ERROR
WARN
public static final LoggerMessageProcessor.LogLevel WARN
INFO
public static final LoggerMessageProcessor.LogLevel INFO
DEBUG
public static final LoggerMessageProcessor.LogLevel DEBUG
TRACE
public static final LoggerMessageProcessor.LogLevel TRACE
values
public static LoggerMessageProcessor.LogLevel[] 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 (LoggerMessageProcessor.LogLevel c : LoggerMessageProcessor.LogLevel.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static LoggerMessageProcessor.LogLevel 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
log
public abstract void log(org.apache.commons.logging.Log logger,
Object object)
isEnabled
public abstract boolean isEnabled(org.apache.commons.logging.Log logger)
Copyright © 2003–2014 MuleSoft, Inc.. All rights reserved.