public static enum ComboFileChooser.Flags extends Enum<ComboFileChooser.Flags>
Enum Constant and Description |
---|
DIRECTORY
Indicates that a directory is being sought.
|
FILE
Indicates that a file is being sought.
|
FILE_OR_DIRECTORY
Indicates that a file or directory is being sought.
|
Modifier and Type | Method and Description |
---|---|
static ComboFileChooser.Flags |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ComboFileChooser.Flags[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComboFileChooser.Flags DIRECTORY
public static final ComboFileChooser.Flags FILE
public static final ComboFileChooser.Flags FILE_OR_DIRECTORY
public static ComboFileChooser.Flags[] values()
for (ComboFileChooser.Flags c : ComboFileChooser.Flags.values()) System.out.println(c);
public static ComboFileChooser.Flags 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 null