public static enum ProjectUpdate.Type extends java.lang.Enum<ProjectUpdate.Type>
Enum Constant and Description |
---|
FILES_CHANGED
Update for when files have been added to a project.
|
PROPERTIES_CHANGED
Update for when the project's properties have changed.
|
Modifier and Type | Method and Description |
---|---|
static ProjectUpdate.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProjectUpdate.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProjectUpdate.Type FILES_CHANGED
public static final ProjectUpdate.Type PROPERTIES_CHANGED
public static ProjectUpdate.Type[] values()
for (ProjectUpdate.Type c : ProjectUpdate.Type.values()) System.out.println(c);
public static ProjectUpdate.Type 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