public static enum OpenBidSDK.LogLevel extends java.lang.Enum<OpenBidSDK.LogLevel>
| Enum Constant and Description |
|---|
All
All level of logs
|
Debug
Error, warning, info and debug logs
|
Error
Error logs only
|
Info
Error, warning and info logs
|
Off
No logs
|
Verbose
Error, warning, info, debug and verbose logs
|
Warn
Error and warning logs
|
| Modifier and Type | Method and Description |
|---|---|
int |
getLevel() |
static OpenBidSDK.LogLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OpenBidSDK.LogLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OpenBidSDK.LogLevel All
public static final OpenBidSDK.LogLevel Verbose
public static final OpenBidSDK.LogLevel Debug
public static final OpenBidSDK.LogLevel Info
public static final OpenBidSDK.LogLevel Warn
public static final OpenBidSDK.LogLevel Error
public static final OpenBidSDK.LogLevel Off
public static OpenBidSDK.LogLevel[] values()
for (OpenBidSDK.LogLevel c : OpenBidSDK.LogLevel.values()) System.out.println(c);
public static OpenBidSDK.LogLevel 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 nullpublic int getLevel()