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