パッケージ com.osboffice.osbxl.dto

クラス DateTimeObjectWrapper

java.lang.Object
com.osboffice.osbxl.dto.DateTimeObjectWrapper

public class DateTimeObjectWrapper extends Object
日付/時刻を扱うオブジェクトです。検索条件等で用いる際に、必要な項目のみ設定することがあります。(例:年月)
  • コンストラクタの概要

    コンストラクタ
    コンストラクタ
    説明
    コンストラクタ
  • メソッドの概要

    修飾子とタイプ
    メソッド
    説明
    int
    日を取得します。
    int
    時刻(時)を取得します。
    int
    時刻(分)を取得します。
    int
    月を取得します。
    int
    時刻(秒)を取得します。
    int
    年を取得します。
    void
    setDay(int day)
    日を設定します。
    void
    setHMS(int hour, int minute, int second)
    時刻(時分秒)を設定します。
    void
    setHour(int hour)
    時刻(時)を設定します。
    void
    setMinute(int minute)
    時刻(分)を設定します。
    void
    setMonth(int month)
    月を設定します。
    void
    setSecond(int second)
    時刻(秒)を設定します。
    void
    setYear(int year)
    年を設定します。
    void
    setYMD(int year, int month, int day)
    年月日を設定します。

    クラスから継承されたメソッド java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • コンストラクタの詳細

    • DateTimeObjectWrapper

      public DateTimeObjectWrapper()
      コンストラクタ

      インスタンスを作成します。

  • メソッドの詳細

    • getYear

      public int getYear()
      年を取得します。
      戻り値:
    • getMonth

      public int getMonth()
      月を取得します。
      戻り値:
    • getDay

      public int getDay()
      日を取得します。
      戻り値:
    • getHour

      public int getHour()
      時刻(時)を取得します。
      戻り値:
      時刻(時)
    • getMinute

      public int getMinute()
      時刻(分)を取得します。
      戻り値:
      時刻(分)
    • getSecond

      public int getSecond()
      時刻(秒)を取得します。
      戻り値:
      時刻(秒)
    • setYear

      public void setYear(int year)
      年を設定します。
      パラメータ:
      year - 年
    • setMonth

      public void setMonth(int month)
      月を設定します。
      パラメータ:
      month - 月
    • setDay

      public void setDay(int day)
      日を設定します。
      パラメータ:
      day - 日
    • setYMD

      public void setYMD(int year, int month, int day)
      年月日を設定します。
      パラメータ:
      year - 年
      month - 月
      day - 日
    • setHour

      public void setHour(int hour)
      時刻(時)を設定します。
      パラメータ:
      hour - 時刻(時)
    • setMinute

      public void setMinute(int minute)
      時刻(分)を設定します。
      パラメータ:
      minute - 時刻(分)
    • setSecond

      public void setSecond(int second)
      時刻(秒)を設定します。
      パラメータ:
      second - 時刻(秒)
    • setHMS

      public void setHMS(int hour, int minute, int second)
      時刻(時分秒)を設定します。
      パラメータ:
      hour - 時
      minute - 分
      second - 秒