public static Scope get()

in text-translators-agent/src/jetbrains/buildServer/agent/messages/regex/ParserCommand.java [48:55]


    public static Scope get(final String name, final Scope defaultValue) {
      for (Scope v : values()) {
        if (v.myId.equals(name)) {
          return v;
        }
      }
      return defaultValue;
    }