Package com.couchbase.client.core.cnc
Enum Event.Severity
- All Implemented Interfaces:
Serializable
,Comparable<Event.Severity>
- Enclosing interface:
- Event
Describes the severity of any given event.
-
Enum Constant Summary
Enum ConstantDescriptionInformation that guide debugging and in-depth troubleshooting.Critical errors that require immediate attention and/or problems which are not recoverable by the system itself.Should rely non-critical information.Events that are created which deal with request and response tracing (not to be confused with TRACE logging which is on purpose called VERBOSE here so that they are not easily confused).Verbose information used to trace certain actual data throughout the system.Indicates that a component is in a non-ideal state and that something could escalate into an error potentially. -
Method Summary
Modifier and TypeMethodDescriptionstatic Event.Severity
Returns the enum constant of this type with the specified name.static Event.Severity[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
VERBOSE
Verbose information used to trace certain actual data throughout the system. -
DEBUG
Information that guide debugging and in-depth troubleshooting. -
INFO
Should rely non-critical information. -
WARN
Indicates that a component is in a non-ideal state and that something could escalate into an error potentially. -
ERROR
Critical errors that require immediate attention and/or problems which are not recoverable by the system itself. -
TRACING
Events that are created which deal with request and response tracing (not to be confused with TRACE logging which is on purpose called VERBOSE here so that they are not easily confused).
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-