如何在IDEA实时模板中使用camelCase

时间:2016-07-12 17:04:53

标签: java intellij-idea

我构建了这个实时模板:

public boolean is$var$Present() {
  return $varname$.isPresent();
}

enter image description here

我希望变量名I type转换为camelCase并插入" return ...."字符串,但这不会发生。 "返回..."部分保持不变。

2 个答案:

答案 0 :(得分:0)

我找到了解决方案:

filename **TAB** line_num **TAB** log.debug("some message **TAB** "+whatever());

enter image description here

答案 1 :(得分:0)

实时模板页面中,您可以单击“ 编辑变量”以在两个或多个变量之间建立连接。

根据您的情况,您可以设置$varname$ camelCase($var$)

希望它对您有用。

设置:

click to see the setting

结果:

result