Java Minute Get fromMinutes(long seed)

Here you can find the source of fromMinutes(long seed)

Description

from Minutes

License

Open Source License

Declaration

private static long fromMinutes(long seed) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    private static long fromMinutes(long seed) {
        return 60 * fromSeconds(seed);
    }/*from  www  .  jav  a 2 s .  co  m*/

    private static long fromSeconds(long seed) {
        return seed * 1000;
    }
}

Related

  1. currentTimeMinutes()
  2. getCompleteDayAsHourMinuteString()
  3. getElapsedTimeHoursMinutesFromMilliseconds(long milliseconds)
  4. getFiveMinuteCronByHostId(long hostId)
  5. getFrequencyValueInMinutes(long value)