Here you can find the source of round(double val)
private static int round(double val)
//package com.java2s; public class Main { private static int round(double val) { return (int) Math.round(val); }/*from w w w .j av a 2 s . co m*/ }