public static enum CefJSDialogHandler.JSDialogType extends java.lang.Enum<CefJSDialogHandler.JSDialogType>
| Enum Constant and Description |
|---|
JSDIALOGTYPE_ALERT |
JSDIALOGTYPE_CONFIRM |
JSDIALOGTYPE_PROMPT |
| Modifier and Type | Method and Description |
|---|---|
static CefJSDialogHandler.JSDialogType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CefJSDialogHandler.JSDialogType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
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 - 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 CefJSDialogHandler.JSDialogType[] values()
for (CefJSDialogHandler.JSDialogType c : CefJSDialogHandler.JSDialogType.values()) System.out.println(c);