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