List of utility methods to do Second Get
long | currentTimeAsSeconds() current Time As Seconds return System.currentTimeMillis() / 1000;
|
long | currentTimeInSeconds() current Time In Seconds return System.currentTimeMillis() / 1000;
|
long | currentTimePlusNSeconds(long n) current Time Plus N Seconds return currentTimeSeconds() + n;
|
long | currentTimeSecond() Gets the current time, rounded down to the closest second. return roundToSecond(System.currentTimeMillis());
|
int | currentTimeSecond() current Time Second return Long.valueOf(System.currentTimeMillis() / 1000).intValue();
|
long | currentTimeSeconds() current Time Seconds return currentTimeMillis() / 1000L;
|
long | currentTimeSeconds() A method to get the unix time... return (System.currentTimeMillis() / 1000);
|
long | currentTimeSeconds() Gets a unix timestamp in seconds. return (System.currentTimeMillis() / ONE_SECOND_IN_MILLISECONDS);
|
int | getClockSkewInSeconds() Get the server synchronization tolerance value in seconds. return 0;
|
String | getCronBySecondScheduler(int second) get Cron By Second Scheduler if (second >= (24 * 60 * 60) || second == 0) { return null; int hh = 0; if (second >= 3600) { hh = second / 3600; second = second - (hh * 3600); int mm = second / 60; int ss = second % 60; return (ss == 0 ? "0" : ("*/" + ss)) + (mm == 0 ? (ss == 0 ? (hh == 0 ? (" *") : " 0") : (hh == 0 ? " *" : " 0")) : (" */" + mm)) + (hh == 0 ? " *" : (" */" + hh)) + " * * ?"; |