For some code generation I look for a library that can convert any String to a java code convention compliant class name. E.g.
2some_File_name
should be converted to SomeFileName
I want to use the converted String in a template engine to generate java classes.
This sounds like a general problem and I wonder if someone knows a library that does that. I wasn't able to find one unfortunately.