public enum EventingFunctionLogLevel extends Enum<EventingFunctionLogLevel>
| Enum Constant and Description |
|---|
DEBUG
DEBUG-Level or higher will be logged.
|
ERROR
ERROR-Level or higher will be logged.
|
INFO
INFO-Level or higher will be logged.
|
TRACE
TRACE-Level or higher will be logged.
|
WARNING
WARNING-Level or higher will be logged.
|
| Modifier and Type | Method and Description |
|---|---|
static EventingFunctionLogLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EventingFunctionLogLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventingFunctionLogLevel DEBUG
public static final EventingFunctionLogLevel TRACE
public static final EventingFunctionLogLevel INFO
public static final EventingFunctionLogLevel ERROR
public static final EventingFunctionLogLevel WARNING
public static EventingFunctionLogLevel[] values()
for (EventingFunctionLogLevel c : EventingFunctionLogLevel.values()) System.out.println(c);
public static EventingFunctionLogLevel 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 © 2024 Couchbase, Inc.. All rights reserved.