public static enum CefSettings.LogSeverity extends java.lang.Enum<CefSettings.LogSeverity>
| Enum Constant and Description |
|---|
LOGSEVERITY_DEFAULT
Default logging (currently INFO logging).
|
LOGSEVERITY_DISABLE
Completely disable logging.
|
LOGSEVERITY_ERROR
ERROR logging.
|
LOGSEVERITY_FATAL
FATAL logging.
|
LOGSEVERITY_INFO
INFO logging.
|
LOGSEVERITY_VERBOSE
Verbose logging.
|
LOGSEVERITY_WARNING
WARNING logging.
|
| Modifier and Type | Method and Description |
|---|---|
static CefSettings.LogSeverity |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CefSettings.LogSeverity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CefSettings.LogSeverity LOGSEVERITY_DEFAULT
public static final CefSettings.LogSeverity LOGSEVERITY_DISABLE
public static final CefSettings.LogSeverity LOGSEVERITY_ERROR
public static final CefSettings.LogSeverity LOGSEVERITY_FATAL
public static final CefSettings.LogSeverity LOGSEVERITY_INFO
public static final CefSettings.LogSeverity LOGSEVERITY_VERBOSE
public static final CefSettings.LogSeverity LOGSEVERITY_WARNING
public static CefSettings.LogSeverity 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 static CefSettings.LogSeverity[] values()
for (CefSettings.LogSeverity c : CefSettings.LogSeverity.values()) System.out.println(c);