public static enum WorkspaceManager.InactivityCause extends Enum<WorkspaceManager.InactivityCause>
| Enum Constant and Description |
|---|
EXCLUDED
Constant for excluded workspaces
|
MISCONFIGURED
Constant for workspaces having error in their workspace.xml file
|
MISDECLARED
Constant for workspaces having error in their declaration
|
| Modifier and Type | Method and Description |
|---|---|
static WorkspaceManager.InactivityCause |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WorkspaceManager.InactivityCause[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WorkspaceManager.InactivityCause EXCLUDED
public static final WorkspaceManager.InactivityCause MISDECLARED
public static final WorkspaceManager.InactivityCause MISCONFIGURED
public static WorkspaceManager.InactivityCause[] values()
for (WorkspaceManager.InactivityCause c : WorkspaceManager.InactivityCause.values()) System.out.println(c);
public static WorkspaceManager.InactivityCause 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 null