@NotNull
 public static ModuleType getType(@NotNull String behaviourName) {
   for (ModuleType type : ModuleType.values())
     if (StringUtil.equals(type.behaviourName, behaviourName)) return type;
   return REGULAR;
 }