001/*
002 * Copyright (c) 2009 The openGion Project.
003 *
004 * Licensed under the Apache License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 *     http://www.apache.org/licenses/LICENSE-2.0
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
013 * either express or implied. See the License for the specific language
014 * governing permissions and limitations under the License.
015 */
016package org.opengion.hayabusa.resource;
017
018import java.util.Calendar;
019
020/**
021 * 事業所(CDJGS) 毎の休日カレンダデータオブジェクトです。
022 *
023 * カレンダデータは、指定の事業所に関して、すべての休日情報を持っています。
024 * 元のカレンダテーブル(GE13)の 1日(DY1)~31日(DY31)までの日付け欄に対して、
025 * 休日日付けの 年月日 に対する、休日かどうかを判断できるだけの情報を保持します。
026 * 具体的には、年月日に対する Set を持つことになります。
027 *
028 * @og.rev 3.6.0.0 (2004/09/17) 新規作成
029 * @og.group リソース管理
030 *
031 * @version  4.0
032 * @author   Kazuhiko Hasegawa
033 * @since    JDK5.0,
034 */
035public final class CalendarPGData_SUNDAY extends AbstractCalendarPGData {
036
037        /**
038         * デフォルトコンストラクター
039         *
040         * @og.rev 6.4.2.0 (2016/01/29) PMD refactoring. Each class should declare at least one constructor.
041         */
042        public CalendarPGData_SUNDAY() { super(); }             // これも、自動的に呼ばれるが、空のメソッドを作成すると警告されるので、明示的にしておきます。
043
044        /**
045         * 指定の日付けが、休日かどうかを返します。
046         * ここでは、日曜日かどうかの判定結果を返しています。
047         *
048         * @param       day     指定の日付け
049         *
050         * @return      休日:true それ以外:false
051         *
052         */
053        @Override       // CalendarData
054        public boolean isHoliday( final Calendar day ) {
055                return day.get(Calendar.DAY_OF_WEEK) == Calendar.SUNDAY ;
056        }
057}