java.lang.Integer.valueOf(int i) java.lang.Integer.toString(int i, int radix) java.lang.Integer.valueOf(String s) java.lang.Integer.valueOf(int i) package com.codingdict; import java.lang.*; public class IntegerDemo { public static void main(String[] args) { Integer i = new Integer(30); // returns a Integer instance representing the specified int value System.out.println("Value = " + i.valueOf(2)); } } java.lang.Integer.toString(int i, int radix) java.lang.Integer.valueOf(String s)