antkorwin / better-strings

Java String Interpolation Plugin
Apache License 2.0
98 stars 8 forks source link

Support of enums #8

Closed antkorwin closed 4 years ago

antkorwin commented 4 years ago

Add support to work in the code of enums.

for example:

enum TestEnum {
   FOO,
   BAR;
   String getVal(){ return "${1+2}"; }
}

This element type doesn't support yet.