Package com.couchbase.client.core.cnc
Enum Event.Category
- All Implemented Interfaces:
Serializable
,Comparable<Event.Category>
- Enclosing interface:
- Event
Describes the category of any given event.
-
Enum Constant Summary
Enum ConstantDescriptionRepresents an event from the config subsystem.Represents an event from the upper level core subsystem.Represents an event from the Endpoint layer.Represents an event from the IO subsystem.Represents events that comes from the metrics subsystem.Represents an event from the Node layer.Represents an event around a specific request instance.Represents an event from the Service layer.Represents an event that concerns the JVM/OS/system.Represents event that come from the tracing subsystem. -
Method Summary
Modifier and TypeMethodDescriptionpath()
static Event.Category
Returns the enum constant of this type with the specified name.static Event.Category[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
IO
Represents an event from the IO subsystem. -
ENDPOINT
Represents an event from the Endpoint layer. -
REQUEST
Represents an event around a specific request instance. -
SYSTEM
Represents an event that concerns the JVM/OS/system. -
SERVICE
Represents an event from the Service layer. -
NODE
Represents an event from the Node layer. -
CONFIG
Represents an event from the config subsystem. -
CORE
Represents an event from the upper level core subsystem. -
TRACING
Represents event that come from the tracing subsystem. -
METRICS
Represents events that comes from the metrics subsystem.
-
-
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
-
path
-