public static enum Event.Category extends Enum<Event.Category>
Enum Constant and Description |
---|
CONFIG
Represents an event from the config subsystem.
|
CORE
Represents an event from the upper level core subsystem.
|
ENDPOINT
Represents an event from the Endpoint layer.
|
IO
Represents an event from the IO subsystem.
|
NODE
Represents an event from the Node layer.
|
REQUEST
Represents an event around a specific request instance.
|
SERVICE
Represents an event from the Service layer.
|
SYSTEM
Represents an event that concerns the JVM/OS/system.
|
TRACING
Represents event that come from the tracing subsystem.
|
Modifier and Type | Method and Description |
---|---|
String |
path() |
static Event.Category |
valueOf(String name)
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.
|
public static final Event.Category IO
public static final Event.Category ENDPOINT
public static final Event.Category REQUEST
public static final Event.Category SYSTEM
public static final Event.Category SERVICE
public static final Event.Category NODE
public static final Event.Category CONFIG
public static final Event.Category CORE
public static final Event.Category TRACING
public static Event.Category[] values()
for (Event.Category c : Event.Category.values()) System.out.println(c);
public static Event.Category 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 String path()
Copyright © 2020 Couchbase, Inc.. All rights reserved.