Java Minute countMinute(Long time)

Here you can find the source of countMinute(Long time)

Description

count Minute

License

Apache License

Declaration

public static Integer countMinute(Long time) 

Method Source Code

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

public class Main {
    public static Integer countMinute(Long time) {
        Long days = time / 60000;
        return days.intValue();
    }//from  w w  w.j  a va 2  s  .c om
}

Related

  1. addMinutesToMjd(double mjd, double minutes)
  2. buildDelayParamForMinutes(final int delayInMinutes)
  3. calculateRuntimeMinutes(long startTime, long endTime)
  4. calMinutes(Date date1, Date date2)
  5. elapsedMinutes(int beginTimeInMinutes, int endTimeInMinutes)
  6. extractMinutes(String[] parts)
  7. floorTimestamp(Date ts, int windowMinutes)
  8. getDateAfter(Date date, int minute)