Java Minute Convert MinutesToSeconds(long minutes)

Here you can find the source of MinutesToSeconds(long minutes)

Description

Minutes To Seconds

License

Open Source License

Declaration

public static long MinutesToSeconds(long minutes) 

Method Source Code

//package com.java2s;
/*/*from   ww  w .j ava2  s .c  o m*/
 * Copyright (c) 2015. Sandata Technologies, LLC
 * 26 Harbor Park Drive, Port Washington, NY 11050, 800-544-7263
 * All rights reserved.
 *
 * This software is the confidential and proprietary information of Sandata Technologies, LLC
 * ("Confidential Information"). You shall not disclose such Confidential Information and shall
 * use it only in accordance with the terms of the license agreement you entered into with
 * Sandata.
 */

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

    public static long MinutesToSeconds(long minutes) {
        return minutes * SECONDS_IN_A_MINUTE;
    }
}

Related

  1. minutesToMillis(int minutes)
  2. minutesToMillis(long minutes)
  3. minutesToMilliseconds(final int val)
  4. minutesToMilliseconds(int minutes)
  5. minutesToSamples(int sampleRate, int minutes)
  6. minutesToSecs(long minutes)
  7. minutesToShortTime(int minutes)
  8. minutesToString(Integer minutes)
  9. minutesToTicks(double x)