public static enum StructureUpdate.Type extends java.lang.Enum<StructureUpdate.Type>
Enum Constant and Description |
---|
GROUP_ADDED
Notifies the addition of a group.
|
GROUP_REMOVED
Notifies the removal of a group.
|
NODE_MOVED
Notifies that a project or group has been moved to another group.
|
PROJECT_ADDED
Notifies the creation of a project.
|
PROJECT_REMOVED
Notifies the removal of a project.
|
Modifier and Type | Method and Description |
---|---|
static StructureUpdate.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StructureUpdate.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StructureUpdate.Type PROJECT_ADDED
public static final StructureUpdate.Type PROJECT_REMOVED
public static final StructureUpdate.Type GROUP_ADDED
public static final StructureUpdate.Type GROUP_REMOVED
public static final StructureUpdate.Type NODE_MOVED
public static StructureUpdate.Type[] values()
for (StructureUpdate.Type c : StructureUpdate.Type.values()) System.out.println(c);
public static StructureUpdate.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