public enum LoggingLevelType extends Enum<LoggingLevelType> implements LoggingLevel
| Enum Constant and Description |
|---|
DEBUG
To log with logging level 'DEBUG'.
|
ERROR
To log with logging level 'Error'.
|
INFO
To log with logging level 'INFO'.
|
TRACE
To log with logging level 'TRACE'.
|
WARN
To log with logging level 'WARN'.
|
| Modifier and Type | Method and Description |
|---|---|
static LoggingLevelType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LoggingLevelType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LoggingLevelType INFO
public static final LoggingLevelType ERROR
public static final LoggingLevelType WARN
public static final LoggingLevelType DEBUG
public static final LoggingLevelType TRACE
public static LoggingLevelType[] values()
for (LoggingLevelType c : LoggingLevelType.values()) System.out.println(c);
public static LoggingLevelType 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 © 2023. All rights reserved.