Java Minute Convert convertHoursToMinutes(final int hours)

Here you can find the source of convertHoursToMinutes(final int hours)

Description

Convert hours to minutes.

License

Open Source License

Declaration

public static int convertHoursToMinutes(final int hours) 

Method Source Code

//package com.java2s;
/*//from  www . j  a  v a 2 s  .  c o  m
 * Copyright (c) 2000-2002 INSciTE.  All rights reserved
 * INSciTE is on the web at: http://www.hightechkids.org
 * This code is released under GPL; see LICENSE.txt for details.
 */

public class Main {
    public static final int MINUTES_PER_HOUR = 60;

    /**
     * Convert hours to minutes.
     */
    public static int convertHoursToMinutes(final int hours) {
        return hours * MINUTES_PER_HOUR;
    }
}

Related

  1. convertDegreeMinuteSecond(double degree, double minute, double second)
  2. convertHoursMinutesSecondsToSeconds(String offset)
  3. convertHoursToMinutes(Double hours)
  4. convertMillisToHoursMinutesSeconds(long offset)
  5. convertMinute(String targetHhMm)
  6. convertMinuteSecond(double minute, double second)
  7. convertMinutesSecondsToMilliseconds(String offset)