Here you can find the source of MinutesToSeconds(long minutes)
public static long MinutesToSeconds(long minutes)
//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; } }