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