According to K&B (Page No. 243 table) :
1) valueOf() method takes the 'first argument' as only
String representation and
doesn't work for Character wrapper class.
2) parseXxx() method
doesn't work for Boolean wrapper class
But, according to my tests :
1) valueOf() method is
working for Character wrapper class with an argument taken in
character representation i.e for instance,
Character.valueOf('a')
2) parseXxx() method is
working for Boolean wrapper class i.e for instance,
Boolean.parseBoolean("True")
Please comment on this ......... what is your Opinion on these ?