The static Integer.decode() method can be use to convert a string
representation of a number into an Integer object. Under the cover
this method call the Integer.valueOf(String s, int radix).
The string can start with the optional negative sign followed with radix specified
such as 0x, 0X, # for hexa decimal value, 0 (zero) for octal number.