Java Hour to Second hourToSecond(final Double hour)

Here you can find the source of hourToSecond(final Double hour)

Description

hour To Second

License

Open Source License

Declaration

public static Integer hourToSecond(final Double hour) 

Method Source Code

//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*/
}