public static enum CefApp.CefAppState extends Enum<CefApp.CefAppState>
| 枚举常量和说明 |
|---|
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.
|
public static final CefApp.CefAppState NONE
public static final CefApp.CefAppState NEW
public static final CefApp.CefAppState INITIALIZING
public static final CefApp.CefAppState INITIALIZED
public static final CefApp.CefAppState SHUTTING_DOWN
public static final CefApp.CefAppState TERMINATED
public static CefApp.CefAppState[] values()
for (CefApp.CefAppState c : CefApp.CefAppState.values()) System.out.println(c);
public static CefApp.CefAppState valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2017. All rights reserved.