public static enum ProjectFileTypeComboBox.Mode extends Enum<ProjectFileTypeComboBox.Mode>
| Enum Constant and Description |
|---|
DIRECTORY_ONLY
Apenas diretório.
|
FILE_AND_DIRECTORY
Arquivo e diretório.
|
FILE_ONLY
Apenas arquivo.
|
| Modifier and Type | Method and Description |
|---|---|
static ProjectFileTypeComboBox.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProjectFileTypeComboBox.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProjectFileTypeComboBox.Mode FILE_ONLY
public static final ProjectFileTypeComboBox.Mode DIRECTORY_ONLY
public static final ProjectFileTypeComboBox.Mode FILE_AND_DIRECTORY
public static ProjectFileTypeComboBox.Mode[] values()
for (ProjectFileTypeComboBox.Mode c : ProjectFileTypeComboBox.Mode.values()) System.out.println(c);
public static ProjectFileTypeComboBox.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.