@AlfrescoPublicApi public enum ModuleInstallState extends Enum<ModuleInstallState>
Enum Constant and Description |
---|
DISABLED
The module is disabled
|
INSTALLED
The module is installed
|
UNINSTALLED
The module has been uninstalled
|
UNKNOWN
The state of the module is unknown
|
Modifier and Type | Method and Description |
---|---|
static ModuleInstallState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ModuleInstallState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModuleInstallState UNKNOWN
public static final ModuleInstallState INSTALLED
public static final ModuleInstallState DISABLED
public static final ModuleInstallState UNINSTALLED
public static ModuleInstallState[] values()
for (ModuleInstallState c : ModuleInstallState.values()) System.out.println(c);
public static ModuleInstallState 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 nullCopyright © 2005–2017 Alfresco Software. All rights reserved.