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 imported
      USED_BY_ANOTHER_MODULE
      Indicates that module is used by another module and thus cannot be imported
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      private Reason()  
    • Constructor Detail

      • Reason

        private Reason()
    • 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 name
        java.lang.NullPointerException - if the argument is null