What is the most elegant way to convert a hyphen separated word (e.g. \"do-some-stuff\") to the lower camel-case variation (e.g. \"doSomeStuff\") in Java?
Iterate through the string. When you find a hypen, remove it, and capitalise the next letter.