public static enum VFSJFileChooser.DIALOG_TYPE extends Enum<VFSJFileChooser.DIALOG_TYPE>
| Enum Constant and Description |
|---|
CUSTOM
Type value indicating that the
VFSJFileChooser supports a
developer-specified file operation. |
OPEN
Type value indicating that the
VFSJFileChooser supports an
"Open" file operation. |
SAVE
Type value indicating that the
VFSJFileChooser supports a
"Save" file operation. |
| Modifier and Type | Method and Description |
|---|---|
static VFSJFileChooser.DIALOG_TYPE |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VFSJFileChooser.DIALOG_TYPE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VFSJFileChooser.DIALOG_TYPE OPEN
VFSJFileChooser supports an
"Open" file operation.public static final VFSJFileChooser.DIALOG_TYPE SAVE
VFSJFileChooser supports a
"Save" file operation.public static final VFSJFileChooser.DIALOG_TYPE CUSTOM
VFSJFileChooser supports a
developer-specified file operation.public static VFSJFileChooser.DIALOG_TYPE[] values()
for (VFSJFileChooser.DIALOG_TYPE c : VFSJFileChooser.DIALOG_TYPE.values()) System.out.println(c);
public static VFSJFileChooser.DIALOG_TYPE valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2020. All rights reserved.