java.lang.Integer.floatValue() java.lang.Integer.equals() java.lang.Integer.getInteger(String nm) java.lang.Integer.floatValue() package com.codingdict; import java.lang.*; public class IntegerDemo { public static void main(String[] args) { Integer obj = new Integer(35); // returns the value of this Integer as a float float f = obj.floatValue(); System.out.println("Value of f = " + f); } } java.lang.Integer.equals() java.lang.Integer.getInteger(String nm)