public static enum ProjectPropertiesDialog.Mode extends java.lang.Enum<ProjectPropertiesDialog.Mode>
Enum Constant and Description |
---|
EDIT_PROJECT
This dialog is used to edit project's properties: where directories
reside, languages, etc.
|
NEW_PROJECT
This dialog is used to create a new project.
|
RESOLVE_DIRS
This dialog is used to resolve missing directories of existing project
(upon opening the project).
|
Modifier and Type | Method and Description |
---|---|
static ProjectPropertiesDialog.Mode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProjectPropertiesDialog.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProjectPropertiesDialog.Mode NEW_PROJECT
public static final ProjectPropertiesDialog.Mode RESOLVE_DIRS
public static final ProjectPropertiesDialog.Mode EDIT_PROJECT
public static ProjectPropertiesDialog.Mode[] values()
for (ProjectPropertiesDialog.Mode c : ProjectPropertiesDialog.Mode.values()) System.out.println(c);
public static ProjectPropertiesDialog.Mode 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 null