Here you can find the source of doubleToInt(double dble)
public static int doubleToInt(double dble)
//package com.java2s; //License from project: Open Source License public class Main { public static int doubleToInt(double dble) { return (int) dble; }//from w w w .ja v a2s. com }