public static enum LogOutput.Level extends Enum<LogOutput.Level>
| Modifier and Type | Method and Description |
|---|---|
static LogOutput.Level |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LogOutput.Level[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LogOutput.Level ERROR
public static final LogOutput.Level WARN
public static final LogOutput.Level INFO
public static final LogOutput.Level DEBUG
public static final LogOutput.Level TRACE
public static LogOutput.Level[] values()
for (LogOutput.Level c : LogOutput.Level.values()) System.out.println(c);
public static LogOutput.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 © 2011-2017 SonarSource. All Rights Reserved.