public static enum ViewerUpdate.Type extends java.lang.Enum<ViewerUpdate.Type>
| Enum Constant and Description |
|---|
GROUP_ACTIVATED
Notifies that a group has been activated, or selected.
|
PROJECT_LOADED
Notifies the changing of the active project.
|
PROJECT_UNLOADING
Notifies that a project will be deactivated.
|
| Modifier and Type | Method and Description |
|---|---|
static ViewerUpdate.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ViewerUpdate.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ViewerUpdate.Type PROJECT_LOADED
public static final ViewerUpdate.Type PROJECT_UNLOADING
public static final ViewerUpdate.Type GROUP_ACTIVATED
public static ViewerUpdate.Type[] values()
for (ViewerUpdate.Type c : ViewerUpdate.Type.values()) System.out.println(c);
public static ViewerUpdate.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