public static enum CBLogging.Level extends java.lang.Enum<CBLogging.Level>
| Enum Constant and Description |
|---|
ALL
Suspected integration errors as well as diagnostic errors and messages will be logged (in debug and release builds)
|
INTEGRATION
The default setting: suspected integration errors will be logged (in debug builds only)
|
NONE
Nothing will be logged
|
| Modifier and Type | Method and Description |
|---|---|
static CBLogging.Level |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CBLogging.Level[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CBLogging.Level NONE
public static final CBLogging.Level INTEGRATION
public static final CBLogging.Level ALL
public static CBLogging.Level[] values()
for (CBLogging.Level c : CBLogging.Level.values()) System.out.println(c);
public static CBLogging.Level valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null