The Java wrapper classes (Integer, Boolean, Byte, Char, Short, Long, Float, Double [and String]) should be handled consistently.
At the moment Integer, Boolean and String are translated into primitive types in Python and the rest are treated as common objects.
I think that the same rule should apply to all of them.
A big problem here are the (pretty useful) static methods inside them.
The Java wrapper classes (
Integer,Boolean,Byte,Char,Short,Long,Float,Double[andString]) should be handled consistently.At the moment
Integer,BooleanandStringare translated into primitive types in Python and the rest are treated as common objects.I think that the same rule should apply to all of them.
A big problem here are the (pretty useful) static methods inside them.