^ Changing the name of the Object? Would only be possible to do by handing it to another variable:
Say you want “object1” to be renamed to “object2”:
carObject object1 = new carObject();
carObject object2 = object1;
Though this not a rename, you will end up with two references to the same object.
I don’t see the point in that, sorry 
EDIT: It doesn’t make much sense as you can name it all you like when you’re actually typing code. So, my more sensical advice would be to highlight the name of your variable, press delete and finaly type in what you want it to look like 
Expanding even more on that: once you create an object, you can not alter the name of the reference to it. It will eventually be recycled once the app detects it’s of no use anymore.
It would be a real nightmare if it were possible considering other objects may point into the void.