public static enum System.Logger.Level extends Enum<System.Logger.Level>
| Enum Constant and Description |
|---|
ALL |
DEBUG |
ERROR |
INFO |
OFF |
TRACE |
WARNING |
| Modifier and Type | Method and Description |
|---|---|
String |
getName() |
int |
getSeverity() |
static System.Logger.Level |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static System.Logger.Level[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final System.Logger.Level ALL
public static final System.Logger.Level TRACE
public static final System.Logger.Level DEBUG
public static final System.Logger.Level INFO
public static final System.Logger.Level WARNING
public static final System.Logger.Level ERROR
public static final System.Logger.Level OFF
public static System.Logger.Level[] values()
for (System.Logger.Level c : System.Logger.Level.values()) System.out.println(c);
public static System.Logger.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 nullpublic final String getName()
public final int getSeverity()
Copyright © 2025 API Design. All Rights Reserved.