Enum ModulesService.ModuleCannotBeImportedException.Reason
- java.lang.Object
-
- java.lang.Enum<ModulesService.ModuleCannotBeImportedException.Reason>
-
- com.nomagic.magicdraw.core.modules.ModulesService.ModuleCannotBeImportedException.Reason
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ModulesService.ModuleCannotBeImportedException.Reason>
- Enclosing class:
- ModulesService.ModuleCannotBeImportedException
public static enum ModulesService.ModuleCannotBeImportedException.Reason extends java.lang.Enum<ModulesService.ModuleCannotBeImportedException.Reason>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description MODULE_NOT_LOADED
Indicates that module is not loaded and thus cannot be importedUSED_BY_ANOTHER_MODULE
Indicates that module is used by another module and thus cannot be imported
-
Constructor Summary
Constructors Modifier Constructor Description private
Reason()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method 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.
-
-
-
Enum Constant Detail
-
MODULE_NOT_LOADED
public static final ModulesService.ModuleCannotBeImportedException.Reason MODULE_NOT_LOADED
Indicates that module is not loaded and thus cannot be imported
-
USED_BY_ANOTHER_MODULE
public static final ModulesService.ModuleCannotBeImportedException.Reason USED_BY_ANOTHER_MODULE
Indicates that module is used by another module and thus cannot be imported
-
-
Method Detail
-
values
public static ModulesService.ModuleCannotBeImportedException.Reason[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ModulesService.ModuleCannotBeImportedException.Reason c : ModulesService.ModuleCannotBeImportedException.Reason.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ModulesService.ModuleCannotBeImportedException.Reason valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-