Java Second Get getSecondByHour(int hour)

Here you can find the source of getSecondByHour(int hour)

Description

get Second By Hour

License

Apache License

Declaration

public static long getSecondByHour(int hour) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    public static long getSecondByHour(int hour) {
        return getSecondByMinute(hour * 60);
    }//from  w ww . jav  a2 s  .  c om

    public static long getSecondByMinute(int minute) {
        return (minute * 60);
    }
}

Related

  1. getRoundedSeconds(long seconds, long interval)
  2. getSecond(long container)
  3. getSecond(long time)
  4. getSecond(String date)
  5. getSecondByDay(int day)
  6. getSecondByteFromInt(int num)
  7. getSecondColumnAsArray(String[][] stringMatrix)
  8. getSecondExampleTime()
  9. getSecondField(String rowStr, char delimiter)