Java Day End getEndOfDay(Date day)

Here you can find the source of getEndOfDay(Date day)

Description

get End Of Day

License

Open Source License

Declaration

public static Date getEndOfDay(Date day) 

Method Source Code

//package com.java2s;
/*//from   w ww  .  j a  v a2s  .  c o m
 * Copyright (c) 2014 Brockmann Consult GmbH (info@brockmann-consult.de)
 *
 * 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.
 * 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/
 */

import java.util.*;

public class Main {
    public static Date getEndOfDay(Date day) {
        final GregorianCalendar calendar = createUtcCalendar(day);
        calendar.add(Calendar.DAY_OF_MONTH, 1);
        calendar.set(Calendar.MILLISECOND, 0);
        calendar.set(Calendar.SECOND, 0);
        calendar.set(Calendar.MINUTE, 0);
        calendar.set(Calendar.HOUR_OF_DAY, 0);
        return calendar.getTime();
    }

    public static GregorianCalendar createUtcCalendar() {
        return new GregorianCalendar(TimeZone.getTimeZone("UTC"), Locale.ENGLISH);
    }

    public static GregorianCalendar createUtcCalendar(Date date) {
        final GregorianCalendar calendar = new GregorianCalendar(TimeZone.getTimeZone("UTC"), Locale.ENGLISH);
        calendar.setTime(date);
        return calendar;
    }
}

Related

  1. getEndOfDay(Date date)
  2. getEndOfDay(Date date)
  3. getEndOfDay(Date date)
  4. getEndOfDay(Date date)
  5. getEndOfDay(Date day)
  6. getEndOfDay(Date when)
  7. getEndOfDay(final Date date, final TimeZone timeZone)
  8. getEndOfDay(Long date)
  9. getEndOfHour(Date day)