Java Minute Get getMinutesSinceEpoch()

Here you can find the source of getMinutesSinceEpoch()

Description

get Minutes Since Epoch

License

Open Source License

Return

the number of minutes since epoch

Declaration

public static long getMinutesSinceEpoch() 

Method Source Code

//package com.java2s;
/* This file is part of Wissl - Copyright (C) 2013 Mathieu Schnoor
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.//w  ww.  ja  v a  2 s. c  o  m
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

public class Main {
    /**
     * @return the number of minutes since epoch
     */
    public static long getMinutesSinceEpoch() {
        return (System.currentTimeMillis() / 1000);
    }
}

Related

  1. getMinutesDiff(long from, long to)
  2. getMinutesInSecWOHours(long sec)
  3. getMinutesOfTowDiffDate(String p_startDate, String p_endDate)
  4. getMinutesRapp(long microseconds)
  5. getMinutesSeconds(long millisec, String fmt)
  6. getMinutesString(long time)
  7. getMinuteStart(long ts)
  8. getMinutesText(long minutes)
  9. getMinutesTime(long msTime)