Intellij IDEA - 如果多个方法参数,则强制每个方法参数在其自己的行中

Intellij IDEA - Force each method parameter on its own line if more than one

我想这样格式化我的 Java 方法:

public void methodWithOneParameter(final String one) {
   ...
}

public void methodWithMultipleParameters(
     final String one,
     final String two) {
   ...
}

不考虑硬包装设置。这可能吗?
我在 2018.2 EAP(最新)

这很简单:)

Settings (alt+ctrl+s) -> Editor -> Code Style -> Java -> Wrapping and Braces -> Method Delceration Parameters -> (select) "wrap always"

您还可以使用其他 3 个可用选项。要获得您要求的确切代码语法,您需要 select New line after "(" 选项。