public static enum VFSJFileChooser.SELECTION_MODE extends Enum<VFSJFileChooser.SELECTION_MODE>
| Enum Constant and Description |
|---|
DIRECTORIES_ONLY
directories selection
|
FILES_AND_DIRECTORIES
files and directories selection
|
FILES_ONLY
files selection
|
| Modifier and Type | Method and Description |
|---|---|
static VFSJFileChooser.SELECTION_MODE |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VFSJFileChooser.SELECTION_MODE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VFSJFileChooser.SELECTION_MODE FILES_ONLY
public static final VFSJFileChooser.SELECTION_MODE DIRECTORIES_ONLY
public static final VFSJFileChooser.SELECTION_MODE FILES_AND_DIRECTORIES
public static VFSJFileChooser.SELECTION_MODE[] values()
for (VFSJFileChooser.SELECTION_MODE c : VFSJFileChooser.SELECTION_MODE.values()) System.out.println(c);
public static VFSJFileChooser.SELECTION_MODE 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.