public static enum ModulesService.ModuleCannotBeImportedException.Reason extends java.lang.Enum<ModulesService.ModuleCannotBeImportedException.Reason>
| Enum Constant and Description |
|---|
MODULE_NOT_LOADED
Indicates that module is not loaded and thus cannot be imported
|
USED_BY_ANOTHER_MODULE
Indicates that module is used by another module and thus cannot
be imported
|
| Modifier and Type | Method and Description |
|---|---|
static ModulesService.ModuleCannotBeImportedException.Reason |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ModulesService.ModuleCannotBeImportedException.Reason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModulesService.ModuleCannotBeImportedException.Reason MODULE_NOT_LOADED
public static final ModulesService.ModuleCannotBeImportedException.Reason USED_BY_ANOTHER_MODULE
public static ModulesService.ModuleCannotBeImportedException.Reason[] values()
for (ModulesService.ModuleCannotBeImportedException.Reason c : ModulesService.ModuleCannotBeImportedException.Reason.values()) System.out.println(c);
public static ModulesService.ModuleCannotBeImportedException.Reason 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