I have some code with a whole bunch of variable names like
MY_VARIABLE_ONE
MY_VARIABLE_TWO
But these aren't final
, they're regular variables. So I want to reformat them to proper java camel-case, e.g.
myVariableOne
myVariableTwo
Is there a way that Eclipse can do this for me? (Failing that, some other tool?)
This question was marked as a possible duplicate of "Change case in eclipse". That question just deals with uppercase to lowercase. Camel-case is not addressed (just about any editor can do uppercase to lowercase, that's a trivial problem to solve)