public static enum CustomRestrictionPolicyContext.LogLevel extends Enum<CustomRestrictionPolicyContext.LogLevel>
Enum Constant and Description |
---|
DEBUG
The
DEBUG level designates fine-grained informational events
that are most useful to debug an application. |
ERROR
The
ERROR level designates error events that might still
allow the application to continue running. |
FATAL
The
FATAL level designates very severe error events that will
presumably lead the application to abort. |
INFO
The
INFO level designates informational messages that
highlight the progress of the application |
TRACE
The
TRACE level designates finer-grained informational events
than the DEBUG |
WARN
The
WARN level designates potentially harmful situations. |
Modifier and Type | Method and Description |
---|---|
static CustomRestrictionPolicyContext.LogLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CustomRestrictionPolicyContext.LogLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CustomRestrictionPolicyContext.LogLevel INFO
INFO
level designates informational messages that
highlight the progress of the applicationpublic static final CustomRestrictionPolicyContext.LogLevel TRACE
TRACE
level designates finer-grained informational events
than the DEBUG
public static final CustomRestrictionPolicyContext.LogLevel DEBUG
DEBUG
level designates fine-grained informational events
that are most useful to debug an application.public static final CustomRestrictionPolicyContext.LogLevel WARN
WARN
level designates potentially harmful situations.public static final CustomRestrictionPolicyContext.LogLevel ERROR
ERROR
level designates error events that might still
allow the application to continue running.public static final CustomRestrictionPolicyContext.LogLevel FATAL
FATAL
level designates very severe error events that will
presumably lead the application to abort.public static CustomRestrictionPolicyContext.LogLevel[] values()
for (CustomRestrictionPolicyContext.LogLevel c : CustomRestrictionPolicyContext.LogLevel.values()) System.out.println(c);
public static CustomRestrictionPolicyContext.LogLevel 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 Denodo Technologies. All rights reserved.