⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 basecalendar.java

📁 Quartz is a full-featured, open source job scheduling system that can be integrated with, or used al
💻 JAVA
字号:
/*  * Copyright 2004-2005 OpenSymphony  *  * Licensed under the Apache License, Version 2.0 (the "License"); you may not  * use this file except in compliance with the License. You may obtain a copy  * of the License at  *  *   http://www.apache.org/licenses/LICENSE-2.0  *    * Unless required by applicable law or agreed to in writing, software  * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT  * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the  * License for the specific language governing permissions and limitations  * under the License. *  *//* * Previously Copyright (c) 2001-2004 James House * and Juergen Donnerstag (c) 2002, EDS 2002 */package org.quartz.impl.calendar;import java.io.Serializable;import java.util.Date;import java.util.TimeZone;import org.quartz.Calendar;/** * <p> * This implementation of the Calendar may be used (you don't have to) as a * base class for more sophisticated one's. It merely implements the base * functionality required by each Calendar. * </p> *  * <p> * Regarded as base functionality is the treatment of base calendars. Base * calendar allow you to chain (stack) as much calendars as you may need. For * example to exclude weekends you may use WeeklyCalendar. In order to exclude * holidays as well you may define a WeeklyCalendar instance to be the base * calendar for HolidayCalendar instance. * </p> *  * @see org.quartz.Calendar *  * @author Juergen Donnerstag * @author James House */public class BaseCalendar implements Calendar, Serializable {    static final long serialVersionUID = 3106623404629760239L;        // <p>A optional base calendar.</p>    private Calendar baseCalendar;    private String description;        private TimeZone timeZone;    public BaseCalendar() {    }    public BaseCalendar(Calendar baseCalendar) {        setBaseCalendar(baseCalendar);    }    /**     * @param timeZone The time zone to use for this Calendar, <code>null</code>      * if <code>{@link TimeZone#getDefault()}</code> should be used     */    public BaseCalendar(TimeZone timeZone) {        setTimeZone(timeZone);    }    /**     * @param timeZone The time zone to use for this Calendar, <code>null</code>      * if <code>{@link TimeZone#getDefault()}</code> should be used     */    public BaseCalendar(Calendar baseCalendar, TimeZone timeZone) {        setBaseCalendar(baseCalendar);        setTimeZone(timeZone);    }    /**     * <p>     * Set a new base calendar or remove the existing one     * </p>     */    public void setBaseCalendar(Calendar baseCalendar) {        this.baseCalendar = baseCalendar;    }    /**     * <p>     * Get the base calendar. Will be null, if not set.     * </p>     */    public Calendar getBaseCalendar() {        return this.baseCalendar;    }    /**     * <p>     * Return the description given to the <code>Calendar</code> instance by     * its creator (if any).     * </p>     *      * @return null if no description was set.     */    public String getDescription() {        return description;    }    /**     * <p>     * Set a description for the <code>Calendar</code> instance - may be     * useful for remembering/displaying the purpose of the calendar, though     * the description has no meaning to Quartz.     * </p>     */    public void setDescription(String description) {        this.description = description;    }    /**     * Returns the time zone for which this <code>Calendar</code> will be      * resolved.     *      * @return This Calendar's timezone, <code>null</code> if Calendar should      * use the <code>{@link TimeZone#getDefault()}</code>     */    public TimeZone getTimeZone() {        return timeZone;    }    /**     * Sets the time zone for which this <code>Calendar</code> will be resolved.     *      * @param timeZone The time zone to use for this Calendar, <code>null</code>      * if <code>{@link TimeZone#getDefault()}</code> should be used     */    public void setTimeZone(TimeZone timeZone) {        this.timeZone = timeZone;    }        /**     * <p>     * Check if date/time represented by timeStamp is included. If included     * return true. The implementation of BaseCalendar simply calls the base     * calendars isTimeIncluded() method if base calendar is set.     * </p>     *      * @see org.quartz.Calendar#isTimeIncluded(long)     */    public boolean isTimeIncluded(long timeStamp) {        if (timeStamp <= 0) {            throw new IllegalArgumentException(                    "timeStamp must be greater 0");        }        if (baseCalendar != null) {            if (baseCalendar.isTimeIncluded(timeStamp) == false) { return false; }        }        return true;    }    /**     * <p>     * Determine the next time (in milliseconds) that is 'included' by the     * Calendar after the given time. Return the original value if timeStamp is     * included. Return 0 if all days are excluded.     * </p>     *      * @see org.quartz.Calendar#getNextIncludedTime(long)     */    public long getNextIncludedTime(long timeStamp) {        if (timeStamp <= 0) {            throw new IllegalArgumentException(                    "timeStamp must be greater 0");        }        if (baseCalendar != null) {             return baseCalendar.getNextIncludedTime(timeStamp);         }        return timeStamp;    }    /**     * Utility method. Return the date of excludeDate. The time fraction will     * be reset to 00.00:00.     *      * @deprecated Always uses the default time zone.     */    public static Date buildHoliday(Date excludedDate) {        return new BaseCalendar().getStartOfDayJavaCalendar(excludedDate.getTime()).getTime();    }    /**     * Utility method. Return just the date of timeStamp. The time fraction     * will be reset to 00.00:00.     *      * @deprecated Always uses the default time zone.     */    public static long buildHoliday(long timeStamp) {        return new BaseCalendar().getStartOfDayJavaCalendar(timeStamp).getTime().getTime();    }    /**     * Utility method. Return a java.util.Calendar for timeStamp.     *      * @deprecated Always uses the default time zone.     */    public static java.util.Calendar getJavaCalendar(long timeStamp) {        return new BaseCalendar().createJavaCalendar(timeStamp);    }        /**     * Build a <code>{@link java.util.Calendar}</code> for the given timeStamp.       * The new Calendar will use the <code>BaseCalendar</code> time zone if it      * is not <code>null</code>.     */    protected java.util.Calendar createJavaCalendar(long timeStamp) {        java.util.Calendar calendar = createJavaCalendar();        calendar.setTime(new Date(timeStamp));        return calendar;    }        /**     * Build a <code>{@link java.util.Calendar}</code> with the current time.       * The new Calendar will use the <code>BaseCalendar</code> time zone if      * it is not <code>null</code>.     */    protected java.util.Calendar createJavaCalendar() {        return             (getTimeZone() == null) ?                 java.util.Calendar.getInstance() :                 java.util.Calendar.getInstance(getTimeZone());    }    /**     * Returns the start of the given day as a <code>{@link java.util.Calendar}</code>.       * This calculation will take the <code>BaseCalendar</code>      * time zone into account if it is not <code>null</code>.      *      * @param timeInMillis A time containing the desired date for the      *                     start-of-day time     * @return A <code>{@link java.util.Calendar}</code> set to the start of      *         the given day.     */    protected java.util.Calendar getStartOfDayJavaCalendar(long timeInMillis) {        java.util.Calendar startOfDay = createJavaCalendar(timeInMillis);        startOfDay.set(java.util.Calendar.HOUR_OF_DAY, 0);        startOfDay.set(java.util.Calendar.MINUTE, 0);        startOfDay.set(java.util.Calendar.SECOND, 0);        startOfDay.set(java.util.Calendar.MILLISECOND, 0);        return startOfDay;    }        /**     * Returns the end of the given day <code>{@link java.util.Calendar}</code>.      * This calculation will take the <code>BaseCalendar</code>      * time zone into account if it is not <code>null</code>.      *      * @param timeInMillis a time containing the desired date for the      *                     end-of-day time.     * @return A <code>{@link java.util.Calendar}</code> set to the end of      *         the given day.     */    protected java.util.Calendar getEndOfDayJavaCalendar(long timeInMillis) {        java.util.Calendar endOfDay = createJavaCalendar(timeInMillis);        endOfDay.set(java.util.Calendar.HOUR_OF_DAY, 23);        endOfDay.set(java.util.Calendar.MINUTE, 59);        endOfDay.set(java.util.Calendar.SECOND, 59);        endOfDay.set(java.util.Calendar.MILLISECOND, 999);        return endOfDay;    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -