public enum LoggingLevel extends Enum<LoggingLevel>
| Enum Constant and Description |
|---|
Debug
All logs will be displayed.
|
Error
Only errors will be displayed.
|
None
Disable logging (default).
|
Warning
Some not critical points and all errors will be displayed.
|
| Modifier and Type | Method and Description |
|---|---|
static LoggingLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LoggingLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LoggingLevel Debug
public static final LoggingLevel Warning
public static final LoggingLevel Error
public static final LoggingLevel None
public static LoggingLevel[] values()
for (LoggingLevel c : LoggingLevel.values()) System.out.println(c);
public static LoggingLevel 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 © 2025 Aspose. All rights reserved.