Here you can find the source of hourToSecond(final Double hour)
public static Integer hourToSecond(final Double hour)
//package com.java2s; public class Main { public static Integer hourToSecond(final Double hour) { return Double.valueOf(hour * 3600).intValue(); }/* w w w . j a v a 2 s . co m*/ }