Java Calendar Hour setHourMinSecAsNull(Calendar calendar)

Here you can find the source of setHourMinSecAsNull(Calendar calendar)

Description

set Hour Min Sec As Null

License

Open Source License

Declaration

private static void setHourMinSecAsNull(Calendar calendar) 

Method Source Code


//package com.java2s;
/*//from  w  ww .  j  a va2s .co m
 * Copyright (c) 2015  www.see-r.com
 * All rights reserved
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero 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 Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

import java.util.Calendar;

public class Main {
    private static void setHourMinSecAsNull(Calendar calendar) {
        calendar.set(Calendar.HOUR_OF_DAY, 0);
        calendar.set(Calendar.MINUTE, 0);
        calendar.set(Calendar.SECOND, 0);
    }
}

Related

  1. moveToCalendarHourJust(Calendar cal)
  2. moveToCalendarHourTerminal(Calendar cal)
  3. sameHour(Calendar one, Calendar two)
  4. setCalendar(int hour, int mins)
  5. setDateToZeroHour(Calendar calendar)
  6. setHours(int i, Calendar calendar)
  7. setMinHour(Calendar gc)
  8. toMinHours(Calendar calendar)
  9. truncateHour(Calendar c)