public static enum FileEditor.FileSelectionMode extends Enum<FileEditor.FileSelectionMode>
| Enum Constant and Description |
|---|
DirsOnly |
FilesAndDirs |
FilesOnly |
| Modifier and Type | Method and Description |
|---|---|
int |
value() |
static FileEditor.FileSelectionMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FileEditor.FileSelectionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FileEditor.FileSelectionMode FilesOnly
public static final FileEditor.FileSelectionMode DirsOnly
public static final FileEditor.FileSelectionMode FilesAndDirs
public static FileEditor.FileSelectionMode[] values()
for (FileEditor.FileSelectionMode c : FileEditor.FileSelectionMode.values()) System.out.println(c);
public static FileEditor.FileSelectionMode 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 nullpublic int value()
Copyright © 2019. All rights reserved.