java.lang.Integer.intValue() java.lang.Integer.highestOneBit() java.lang.Integer.longValue() java.lang.Integer.intValue() package com.codingdict; import java.lang.*; public class IntegerDemo { public static void main(String[] args) { Integer obj = new Integer(15); // returns the value of this Integer as an int int i = obj.intValue(); System.out.println("Value of i = " + i); } } java.lang.Integer.highestOneBit() java.lang.Integer.longValue()