public static enum TestLogger.LogLevel extends Enum<TestLogger.LogLevel>
Modifier and Type | Method and Description |
---|---|
static TestLogger.LogLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TestLogger.LogLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TestLogger.LogLevel TRACE
Logger.trace(String)
public static final TestLogger.LogLevel DEBUG
Logger.debug(String)
public static final TestLogger.LogLevel WARNING
Logger.warn(String)
public static final TestLogger.LogLevel INFO
Logger.info(String)
public static final TestLogger.LogLevel ERROR
Logger.error(String)
public static TestLogger.LogLevel[] values()
for (TestLogger.LogLevel c : TestLogger.LogLevel.values()) System.out.println(c);
public static TestLogger.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 nullCopyright © 2001–2016 mmm-Team. All rights reserved.