I have a list which will store Number objects. The list will be populated by parsing a list of strings, where each string may represent any subclass of Number.
How d
Integer.valueOf(string s)
returns an Integer object holding the value of the specified String.
Integer is specialized object of Number