Java Minute Get getNextMinute(Integer minute)

Here you can find the source of getNextMinute(Integer minute)

Description

get Next Minute

License

Apache License

Declaration

public static Long getNextMinute(Integer minute) 

Method Source Code

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

public class Main {

    public static Long getNextMinute(Integer minute) {
        Long time = minute * 60000L;
        return System.currentTimeMillis() + time;
    }//  w  w  w .  ja  v a 2  s  .c o  m
}

Related

  1. getMinutesSinceEpoch()
  2. getMinutesString(long time)
  3. getMinuteStart(long ts)
  4. getMinutesText(long minutes)
  5. getMinutesTime(long msTime)
  6. getNumberOfMinutes(long milliseconds)
  7. getOffMinutes()
  8. getOffMinutes(long l)
  9. getOffMinutes(long timestamp)