public enum ClientFileChooserSelectionMode extends java.lang.Enum<ClientFileChooserSelectionMode>
| Enum Constant and Description |
|---|
DIRECTORIES_ONLY
Somente diretórios
|
FILES_ONLY
Somente arquivos
|
| Modifier and Type | Method and Description |
|---|---|
static ClientFileChooserSelectionMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ClientFileChooserSelectionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClientFileChooserSelectionMode FILES_ONLY
public static final ClientFileChooserSelectionMode DIRECTORIES_ONLY
public static ClientFileChooserSelectionMode[] values()
for (ClientFileChooserSelectionMode c : ClientFileChooserSelectionMode.values()) System.out.println(c);
public static ClientFileChooserSelectionMode 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 nullCopyright © 2016. All Rights Reserved.