CefAppState

The CefAppState gives you a hint if the CefApp is already usable or not usable any more. See values for details.

Entries

Link copied to clipboard

No CefApp instance was created yet. Call getInstance() to create a new one.

Link copied to clipboard

CefApp is new created but not initialized yet. No CefClient and no CefBrowser was created until now.

Link copied to clipboard

CefApp is in its initializing process. Please wait until initializing is finished.

Link copied to clipboard

CefApp is up and running. At least one CefClient was created and the message loop is running. You can use all classes and methods of JCEF now.

Link copied to clipboard

CefApp is in its shutdown process. All CefClients and CefBrowser instances will be disposed. No new CefClient or CefBrowser is allowed to be created. The message loop will be performed until all CefClients and all CefBrowsers are disposed completely.

Link copied to clipboard

CefApp is terminated and can't be used any more. You can shutdown the application safely now.

Functions

Link copied to clipboard

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Link copied to clipboard

Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants.