Java Calendar Add getStartDateForLogQuery(int calendarField, int amountToAdd)

Here you can find the source of getStartDateForLogQuery(int calendarField, int amountToAdd)

Description

get Start Date For Log Query

License

Open Source License

Declaration

static Calendar getStartDateForLogQuery(int calendarField, int amountToAdd) 

Method Source Code

//package com.java2s;
/*//from  w  w  w.  j a  v a 2  s  .c  o m
 * PatientView
 *
 * Copyright (c) Worth Solutions Limited 2004-2013
 *
 * This file is part of PatientView.
 *
 * PatientView 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.
 * PatientView 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 PatientView in a file
 * titled COPYING. If not, see <http://www.gnu.org/licenses/>.
 *
 * @package PatientView
 * @link http://www.patientview.org
 * @author PatientView <info@patientview.org>
 * @copyright Copyright (c) 2004-2013, Worth Solutions Limited
 * @license http://www.gnu.org/licenses/gpl-3.0.html The GNU General Public License V3.0
 */

import java.util.Calendar;

public class Main {
    static Calendar getStartDateForLogQuery(int calendarField, int amountToAdd) {
        Calendar startDate = Calendar.getInstance();
        startDate.set(Calendar.HOUR_OF_DAY, 0);
        startDate.set(Calendar.MINUTE, 0);
        startDate.set(Calendar.SECOND, 0);
        startDate.set(Calendar.MILLISECOND, 0);

        startDate.add(calendarField, amountToAdd);

        return startDate;
    }
}

Related

  1. appendEra(StringBuffer sb, Calendar cal)
  2. appendTime(Calendar value, StringBuffer dateString)
  3. appendTimeZone(Calendar calendar, StringBuffer dateString)
  4. cloneAndAdd(Calendar source, int field, int amount)
  5. getDayOfAddDay(final Calendar calendar, final int day)
  6. getWithDaysAdded( GregorianCalendar originalDate, int days)
  7. moveToCalendarSecondJustAdded(Calendar cal, int seconds)