public enum ModuleState extends Enum<ModuleState>
Enum Constant and Description |
---|
Activated
Module is installed and should be started at project opening.
|
Desactivated
Module is installed but should not be started at project opening.
|
Incompatible
Deprecated.
should not be used!
|
Initial
Deprecated.
should not be used!
|
Installed
Deprecated.
should not be used!
|
Started
Deprecated.
should not be used!
|
Modifier and Type | Method and Description |
---|---|
static ModuleState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ModuleState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModuleState Initial
public static final ModuleState Installed
public static final ModuleState Incompatible
public static final ModuleState Desactivated
public static final ModuleState Activated
public static final ModuleState Started
public static ModuleState[] values()
for (ModuleState c : ModuleState.values()) System.out.println(c);
public static ModuleState 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