List of utility methods to do Minute Get
String | getNumberOfMinutes(long milliseconds) get Number Of Minutes long minutes = milliseconds / MILLISECONDS_IN_A_MINUTE; long remainder = milliseconds % MILLISECONDS_IN_A_MINUTE; return minutes + " minutes, " + (remainder / 1000) + " seconds"; |
Integer | getOffMinutes() get Off Minutes return OFFMINUTES;
|
long | getOffMinutes(long l) get Off Minutes return getOffMinutes(l, System.currentTimeMillis());
|
long | getOffMinutes(long timestamp) return the time difference from a specified time to now in minutes return getOffMinutes(timestamp, System.currentTimeMillis());
|
long | getRawMinutes(int m) get Raw Minutes return m * 60000l;
|
long | getRemainingMinutes(final long ms) get Remaining Minutes return ms / 1000 / 60 % 60;
|
int | getRemainingMinutes(int minutes) return the module between the given number of minutes and the number of minutes in a day return minutes % MINUTES_IN_A_DAY;
|
int | getReminderMinutes(int option) get Reminder Minutes int reminderMins; switch (option) { case '0': reminderMins = 5; break; case '1': reminderMins = 60; break; ... |
int | getSecondsByMinutes(int minutes) get Seconds By Minutes return minutes * 60;
|
String | getTimeFromMinutes(final int minutes) Turn the int minutes into a 4 digit String hours and minutes value return pad2(minutes / 60) + pad2(minutes % 60);
|