public enum CouchbaseLogLevel extends Enum<CouchbaseLogLevel>
The log level that CouchbaseLogger can log at.
| Enum Constant and Description |
|---|
DEBUG
'DEBUG' log level.
|
ERROR
'ERROR' log level.
|
INFO
'INFO' log level.
|
TRACE
'TRACE' log level.
|
WARN
'WARN' log level.
|
| Modifier and Type | Method and Description |
|---|---|
static CouchbaseLogLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CouchbaseLogLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CouchbaseLogLevel TRACE
public static final CouchbaseLogLevel DEBUG
public static final CouchbaseLogLevel INFO
public static final CouchbaseLogLevel WARN
public static final CouchbaseLogLevel ERROR
public static CouchbaseLogLevel[] values()
for (CouchbaseLogLevel c : CouchbaseLogLevel.values()) System.out.println(c);
public static CouchbaseLogLevel 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 © 2016 Couchbase, Inc.. All rights reserved.