public static enum CefApp.CefAppState extends java.lang.Enum<CefApp.CefAppState>
| Enum Constant and Description |
|---|
INITIALIZATION_FAILED
CEF initialization has failed (for example due to a second process using
the same root_cache_path).
|
INITIALIZED
CefApp is up and running.
|
INITIALIZING
CefApp is in its initializing process.
|
NEW
CefApp is new created but not initialized yet.
|
NONE
No CefApp instance was created yet.
|
SHUTTING_DOWN
CefApp is in its shutdown process.
|
TERMINATED
CefApp is terminated and can't be used any more.
|
| Modifier and Type | Method and Description |
|---|---|
static CefApp.CefAppState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CefApp.CefAppState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CefApp.CefAppState INITIALIZATION_FAILED
public static final CefApp.CefAppState INITIALIZED
public static final CefApp.CefAppState INITIALIZING
public static final CefApp.CefAppState NEW
public static final CefApp.CefAppState NONE
public static final CefApp.CefAppState SHUTTING_DOWN
public static final CefApp.CefAppState TERMINATED
public static CefApp.CefAppState 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 CefApp.CefAppState[] values()
for (CefApp.CefAppState c : CefApp.CefAppState.values()) System.out.println(c);