I'm using GsonGSON to convert jsonJSON data I get to a Java object. It works pretty well in all my tests. The problem is that our real objects have some properties named like is_online. GsonGSON only maps them if they are named totally equal, it would be nice to have GsonGSON convert the names to Java camel case isOnline.
It seems this is possible while creating the jsonJSON data, camel case is converted to underscore separated words in jsonJSON. But I can't find a way to specify this the other way round.