public static enum CefJSDialogHandler.JSDialogType extends java.lang.Enum<CefJSDialogHandler.JSDialogType>
枚举常量和说明 |
---|
JSDIALOGTYPE_ALERT |
JSDIALOGTYPE_CONFIRM |
JSDIALOGTYPE_PROMPT |
限定符和类型 | 方法和说明 |
---|---|
static CefJSDialogHandler.JSDialogType |
valueOf(java.lang.String name)
返回带有指定名称的该类型的枚举常量。
|
static CefJSDialogHandler.JSDialogType[] |
values()
按照声明该枚举类型的常量的顺序, 返回 包含这些常量的数组。
|
public static final CefJSDialogHandler.JSDialogType JSDIALOGTYPE_ALERT
public static final CefJSDialogHandler.JSDialogType JSDIALOGTYPE_CONFIRM
public static final CefJSDialogHandler.JSDialogType JSDIALOGTYPE_PROMPT
public static CefJSDialogHandler.JSDialogType valueOf(java.lang.String name)
name
- 要返回的枚举常量的名称。
java.lang.IllegalArgumentException
- 如果该枚举类型没有带有指定名称的常量
java.lang.NullPointerException
- 如果参数为空值
public static CefJSDialogHandler.JSDialogType[] values()
for (CefJSDialogHandler.JSDialogType c : CefJSDialogHandler.JSDialogType.values()) System.out.println(c);