public enum ErrorLevel extends Enum<ErrorLevel>
Enum Constant and Description |
---|
CRITICAL
Error level for critical messages.
|
ERROR
Error level for regular messages.
|
INFO
Error level for informational messages.
|
SYSTEM
Error level for system errors and bugs.
|
WARNING
Error level for warning messages.
|
Modifier and Type | Method and Description |
---|---|
int |
intValue()
Integer representation of error severity for comparison.
|
static ErrorLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ErrorLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ErrorLevel INFO
public static final ErrorLevel WARNING
public static final ErrorLevel ERROR
public static final ErrorLevel CRITICAL
public static final ErrorLevel SYSTEM
public static ErrorLevel[] values()
for (ErrorLevel c : ErrorLevel.values()) System.out.println(c);
public static ErrorLevel 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 int intValue()
Copyright © 2023. All rights reserved.