public enum Slf4jLevel extends Enum<Slf4jLevel>
| Modifier and Type | Method and Description |
|---|---|
abstract void |
log(org.slf4j.Logger logger,
String message) |
static Slf4jLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Slf4jLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Slf4jLevel TRACE
public static final Slf4jLevel DEBUG
public static final Slf4jLevel INFO
public static final Slf4jLevel WARN
public static final Slf4jLevel ERROR
public static Slf4jLevel[] values()
for (Slf4jLevel c : Slf4jLevel.values()) System.out.println(c);
public static Slf4jLevel 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 void log(org.slf4j.Logger logger,
String message)
Copyright © 2013–2014. All rights reserved.