Java Minute toXMinutes(float t)

Here you can find the source of toXMinutes(float t)

Description

to X Minutes

License

Open Source License

Declaration

public static int toXMinutes(float t) 

Method Source Code

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

public class Main {
    public static int toXMinutes(float t) {
        t = t / 60;/* w  ww.j  av  a2s .c  o  m*/
        return (int) (t);
    }
}

Related

  1. selectOfToday(int hour, int minute, int second, int millisecond)
  2. shortTimeToMinutes(String time)
  3. sleepToNextMinute()
  4. TimeDeltaString_JustMinutesSecs(long ms)
  5. timeFromMinutes(Long minutes)
  6. travelTimeAt100kphInMinutes(double ODDist)